Compare commits

..

No commits in common. "7965230bd0f3af08d62d7efb20a319aa15b93ac0" and "92a04bec1c6500cc7baafef05a81ff07fa90fc59" have entirely different histories.

2 changed files with 6 additions and 9 deletions

View file

@ -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', '<C-Tab>', '<cmd>NvimTreeToggle<CR>')
-- Open/close nerdtree
map('', '<C-t>', '<cmd>NERDTreeToggle<CR>')
-- Telescope
map('n', '<C-f>', '<cmd>Telescope find_files find_command=fd,-Ht,f<CR>')

View file

@ -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'