diff --git a/nvim/plugin-config/tree.lua b/nvim/plugin-config/tree.lua index 77ca70e..3a798e9 100644 --- a/nvim/plugin-config/tree.lua +++ b/nvim/plugin-config/tree.lua @@ -4,10 +4,11 @@ local status, nvim_tree = pcall(require, 'nvim-tree') if (not status) then return end -nvim_tree.setup({}) +nvim_tree.setup() --- Mappings local opts = { noremap = true, silent = true } vim.api.nvim_set_keymap('n', 'nt', [[:NvimTreeToggle]], opts) +vim.api.nvim_set_keymap('n', 'ntf', [[:NvimTreeFindFile]], opts) vim.api.nvim_set_keymap('n', 'ntr', [[:NvimTreeRefresh]], opts)