1
Fork 0

feat: attempt to use nvim-tree instead

This commit is contained in:
Matei Adriel 2022-02-07 13:57:57 +02:00
parent a5883567bb
commit 68ceebb595
3 changed files with 16 additions and 4 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -0,0 +1,11 @@
local mapSilent = require("my.keymaps").mapSilent
local M = {}
function M.setup()
require'nvim-tree'.setup()
-- Toggle nerdtree with Control-t
mapSilent("n", "<C-t>", ":NvimTreeToggle<CR>")
end
return M