diff --git a/home/.config/nvim/lua/keybinds.lua b/home/.config/nvim/lua/keybinds.lua index 198a667d..dc058dbd 100644 --- a/home/.config/nvim/lua/keybinds.lua +++ b/home/.config/nvim/lua/keybinds.lua @@ -4,8 +4,8 @@ local function map(mode, lhs, rhs, opts) vim.api.nvim_set_keymap(mode, lhs, rhs, options) end --- Open/close tree browser -map('n', '', 'NvimTreeToggle') +-- Open/close nerdtree +map('', '', 'NERDTreeToggle') -- Telescope map('n', '', 'Telescope find_files find_command=fd,-Ht,f') diff --git a/home/.config/nvim/lua/pluginmanager.lua b/home/.config/nvim/lua/pluginmanager.lua index 4550e3c7..1739d2f1 100644 --- a/home/.config/nvim/lua/pluginmanager.lua +++ b/home/.config/nvim/lua/pluginmanager.lua @@ -26,7 +26,7 @@ require('packer').startup(function() use 'vim-airline/vim-airline' -- Tree explorer - use {'kyazdani42/nvim-tree.lua', requires = 'kyazdani42/nvim-web-devicons'} + use 'scrooloose/nerdtree' -- Telescope use { @@ -37,9 +37,6 @@ require('packer').startup(function() -- Do stuff as sudo use 'lambdalisue/suda.vim' - -- Read editorconfig settings - use 'editorconfig/editorconfig-vim' - -- Configs for built-in LSP use 'neovim/nvim-lspconfig' @@ -56,9 +53,9 @@ require('packer').startup(function() run = ':TSUpdate' } - -- Syntax highlighting for languages - -- that are not supported by treesitter - use 'sheerun/vim-polyglot' + -- Syntax highlighting for languages + -- that are not supported by treesitter + use 'sheerun/vim-polyglot' -- Formatter plugin use 'sbdchd/neoformat'