summaryrefslogtreecommitdiff
path: root/nvim/lua/kkard2/lazy.lua
diff options
context:
space:
mode:
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" },
+ }
+})