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) vim.api.nvim_set_keymap(mode, lhs, rhs, options)
end end
-- Open/close tree browser -- Open/close nerdtree
map('n', '<C-Tab>', '<cmd>NvimTreeToggle<CR>') map('', '<C-t>', '<cmd>NERDTreeToggle<CR>')
-- Telescope -- Telescope
map('n', '<C-f>', '<cmd>Telescope find_files find_command=fd,-Ht,f<CR>') 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' use 'vim-airline/vim-airline'
-- Tree explorer -- Tree explorer
use {'kyazdani42/nvim-tree.lua', requires = 'kyazdani42/nvim-web-devicons'} use 'scrooloose/nerdtree'
-- Telescope -- Telescope
use { use {
@ -37,9 +37,6 @@ require('packer').startup(function()
-- Do stuff as sudo -- Do stuff as sudo
use 'lambdalisue/suda.vim' use 'lambdalisue/suda.vim'
-- Read editorconfig settings
use 'editorconfig/editorconfig-vim'
-- Configs for built-in LSP -- Configs for built-in LSP
use 'neovim/nvim-lspconfig' use 'neovim/nvim-lspconfig'
@ -56,9 +53,9 @@ require('packer').startup(function()
run = ':TSUpdate' run = ':TSUpdate'
} }
-- Syntax highlighting for languages -- Syntax highlighting for languages
-- that are not supported by treesitter -- that are not supported by treesitter
use 'sheerun/vim-polyglot' use 'sheerun/vim-polyglot'
-- Formatter plugin -- Formatter plugin
use 'sbdchd/neoformat' use 'sbdchd/neoformat'