summaryrefslogtreecommitdiff
path: root/nvim/lua/kkard2/lazy.lua
diff options
context:
space:
mode:
authorkkard2 <[email protected]>2023-07-30 15:33:32 +0200
committerkkard2 <[email protected]>2023-07-30 15:33:32 +0200
commit641cfd630c04de47248212fa6bd86edb449c2ad0 (patch)
tree069f51484b12402b860d49d61c6ffc2c3bc2872b /nvim/lua/kkard2/lazy.lua
parent385628368dbf807327219bac545a11111abf4e53 (diff)
incomplete nvim conf
Diffstat (limited to 'nvim/lua/kkard2/lazy.lua')
-rw-r--r--nvim/lua/kkard2/lazy.lua43
1 files changed, 43 insertions, 0 deletions
diff --git a/nvim/lua/kkard2/lazy.lua b/nvim/lua/kkard2/lazy.lua
new file mode 100644
index 0000000..3061152
--- /dev/null
+++ b/nvim/lua/kkard2/lazy.lua
@@ -0,0 +1,43 @@
+local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
+if not vim.loop.fs_stat(lazypath) then
+ vim.fn.system({
+ "git",
+ "clone",
+ "--filter=blob:none",
+ "https://github.com/folke/lazy.nvim.git",
+ "--branch=stable", -- latest stable release
+ lazypath,
+ })
+end
+vim.opt.rtp:prepend(lazypath)
+
+
+
+require("lazy").setup({
+ {
+ "catppuccin/nvim",
+ name = "catppuccin",
+ lazy = false,
+ config = require("kkard2.lazy.catppuccin"),
+ },
+ {
+ "nvim-treesitter/nvim-treesitter",
+ lazy = false,
+ config = require("kkard2.lazy.treesitter"),
+ },
+ {
+ "mbbill/undotree", keys = {
+ { "<leader>ut", "<cmd>UndotreeToggle<CR><C-w>h" },
+ }
+ },
+ {
+ "nvim-lualine/lualine.nvim",
+ lazy = false,
+ config = function() require("lualine").setup({}) end,
+ },
+ {
+ "nvim-telescope/telescope.nvim",
+ tag = "0.1.2",
+ dependencies = { "nvim-lua/plenary.nvim" },
+ }
+})