mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
chore(vim): rename plugin configuration folder
This commit is contained in:
12
nvim/plugin-config/tree.lua
Normal file
12
nvim/plugin-config/tree.lua
Normal 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)
|
||||
Reference in New Issue
Block a user