From dbd31ab33b75ad60dd852a2200a2dec1200f9a83 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Tue, 21 Mar 2023 21:27:55 +0530 Subject: [PATCH] replace neotree with nvim-tree --- home/nvim.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/home/nvim.nix b/home/nvim.nix index 93a3dec..8acedac 100644 --- a/home/nvim.nix +++ b/home/nvim.nix @@ -21,7 +21,6 @@ ]; plugins = with pkgs.vimPlugins; [ dracula-nvim - neo-tree-nvim (nvim-treesitter.withPlugins (plugins: with plugins; [ bash dockerfile gitcommit gitignore git_rebase go markdown markdown_inline nix rust toml yaml ])) nvim-treesitter-context nvim-treesitter-refactor @@ -104,6 +103,13 @@ require('lspconfig').rust_analyzer.setup{} ''; } + { + plugin = nvim-tree-lua; + type = "lua"; + config = '' + require('nvim-tree').setup{} + ''; + } { plugin = nvim-web-devicons; type = "lua";