diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2025-09-07 18:03:20 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2025-09-07 18:03:20 +0530 |
| commit | 2cc42213f120ffe6a2f06f610bccc31f0c68c2e7 (patch) | |
| tree | d1a1fbe8f49e500758044e8893d733e49ef58773 /nvim/lua/plugins/init.lua | |
| parent | c4e46f4ee64a0096bb836de0346d3ca5ff2b8145 (diff) | |
removed nvim submodule
Diffstat (limited to 'nvim/lua/plugins/init.lua')
| -rw-r--r-- | nvim/lua/plugins/init.lua | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/nvim/lua/plugins/init.lua b/nvim/lua/plugins/init.lua new file mode 100644 index 0000000..c9b7ea8 --- /dev/null +++ b/nvim/lua/plugins/init.lua @@ -0,0 +1,50 @@ +return { + { + "stevearc/conform.nvim", + -- event = 'BufWritePre', -- uncomment for format on save + opts = require "configs.conform", + }, + + -- These are some examples, uncomment them if you want to see them work! + { + "neovim/nvim-lspconfig", + config = function() + require "configs.lspconfig" + end, + }, + + { + "mbbill/undotree", + event = "BufReadPost", + config = function() + vim.keymap.set("n", "<leader>u", vim.cmd.UndotreeToggle, { desc = "Toggle UndoTree" }) + end, + }, + + -- test new blink + -- { import = "nvchad.blink.lazyspec" }, + + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "vim", "lua", "vimdoc", + "html", "css", "elixir", "rust" + }, + }, + }, + + { + "christoomey/vim-tmux-navigator", + lazy = false, + }, + + { + "nvim-tree/nvim-tree.lua", + opts = { + view = { + side = "right" + } + } + }, +} |
