From ce832a3ca2ba94f65e9aeb95e3c610536c93a2ea Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Mon, 7 Feb 2022 14:14:46 +0200 Subject: [PATCH] feat: working nvim-tree setup --- dotfiles/neovim/lua/my/plugins/nvim-tree.lua | 2 +- modules/applications/neovim.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/neovim/lua/my/plugins/nvim-tree.lua b/dotfiles/neovim/lua/my/plugins/nvim-tree.lua index a457b00..63e5c05 100644 --- a/dotfiles/neovim/lua/my/plugins/nvim-tree.lua +++ b/dotfiles/neovim/lua/my/plugins/nvim-tree.lua @@ -5,7 +5,7 @@ local M = {} function M.setup() require'nvim-tree'.setup() -- Toggle nerdtree with Control-t - mapSilent("n", "", ":NvimTreeToggle") + mapSilent("n", "", ":NvimTreeToggle") end return M diff --git a/modules/applications/neovim.nix b/modules/applications/neovim.nix index 71901f8..df18349 100644 --- a/modules/applications/neovim.nix +++ b/modules/applications/neovim.nix @@ -48,7 +48,7 @@ in nvim-web-devicons # fork of vim-devicons? plenary-nvim # async utility lib it seems? lualine-nvim # customizable status line - nvim-tree # file tree + nvim-tree-lua # file tree ]; }; }