diff --git a/init.lua b/init.lua index 10816685..696c5a0b 100644 --- a/init.lua +++ b/init.lua @@ -338,7 +338,16 @@ require('lazy').setup({ end, }, }, - + { + 'nvim-neo-tree/neo-tree.nvim', + version = '*', + dependencies = { + 'nvim-lua/plenary.nvim', + 'MunifTanjim/nui.nvim', + 'nvim-tree/nvim-web-devicons', + }, + lazy = false, + }, -- NOTE: Plugins can also be configured to run Lua code when they are loaded. -- -- This is often very useful to both group configuration, as well as handle @@ -751,7 +760,6 @@ require('lazy').setup({ -- But for many setups, the LSP (`ts_ls`) will work just fine ts_ls = {}, -- - lua_ls = { -- cmd = { ... }, -- filetypes = { ... }, @@ -1041,12 +1049,12 @@ require('lazy').setup({ -- Here are some example plugins that I've included in the Kickstart repository. -- Uncomment any of the lines below to enable them (you will need to restart nvim). -- - -- require 'kickstart.plugins.debug', + require 'kickstart.plugins.debug', -- require 'kickstart.plugins.indent_line', - -- require 'kickstart.plugins.lint', + require 'kickstart.plugins.lint', -- require 'kickstart.plugins.autopairs', require 'kickstart.plugins.neo-tree', - vim.keymap.set('n', 'x', 'Neotree toggle', { desc = 'Toggle NeoTree' }), + vim.keymap.set('n', 'x', 'Neotree toggle', { desc = 'Toggle NeoTree' }), require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`