chore(vim): rename plugin configuration folder

This commit is contained in:
Stefan Imhoff
2021-12-11 16:06:51 +01:00
parent da2ed8be42
commit f53e246380
30 changed files with 29 additions and 29 deletions

View File

@@ -0,0 +1,12 @@
-- nvim-tree.lua
-- https://github.com/kyazdani42/nvim-tree.lua
local status, nvim_tree = pcall(require, 'nvim-tree')
if (not status) then return end
nvim_tree.setup({})
--- Mappings
local opts = { noremap = true, silent = true }
vim.api.nvim_set_keymap('n', '<leader>nt', [[<Cmd>:NvimTreeToggle<CR>]], opts)