-- 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', 'nt', [[:NvimTreeToggle]], opts)