Add NerdTree

writing
Nick Zana 3 years ago
parent 20eea7c025
commit 4a95aabffb
No known key found for this signature in database
GPG Key ID: A6E59E60FE474883

@ -21,6 +21,8 @@ map('n', '<C-l>', '<C-w>l', options)
map('t', '<C-e>', '<C-\\><C-n>', options) -- Exit Terminal mode enter Normal
-- FILE NAVIGATION
-- NerdTree
map('n', '<leader>nt', '<cmd>NERDTreeToggle<CR>', options)
map('n', '<C-p>', '<cmd>Telescope git_files<CR>', options)
map('n', '<C-f>', '<cmd>Telescope find_files<CR>', options)
-- Grep for prompted str project wide

@ -13,6 +13,7 @@ local plugins = require('packer').startup(function(use)
'nvim-telescope/telescope.nvim', -- search and select tool
requires = { {'nvim-lua/plenary.nvim'} }
}
use 'preservim/nerdtree'
-- git
use 'tpope/vim-fugitive'

Loading…
Cancel
Save