Add autoclose and vim-surround plugins

This commit is contained in:
flyingscorpio@clevo 2022-08-04 11:12:42 +02:00
parent e8e9c7ea01
commit 1c7e760292
2 changed files with 9 additions and 2 deletions

View file

@ -12,7 +12,8 @@ require'lspconfig'.sumneko_lua.setup {
},
diagnostics = {
-- Get the language server to recognize the `vim` global
globals = {'vim'},
globals = { 'vim' },
disable = { 'lowercase-global' },
},
workspace = {
-- Make the server aware of Neovim runtime files

View file

@ -18,10 +18,16 @@ return require('packer').startup(function(use)
run = function() require('nvim-treesitter.install').update({ with_sync = true }) end,
}
-- COLOR SCHEMES
-- Color schemes
use 'morhetz/gruvbox'
use 'sjl/badwolf'
-- Auto close parens and such
use 'Townk/vim-autoclose'
-- Surround
use 'tpope/vim-surround'
-- NERDTree
use 'preservim/nerdtree'
use 'Xuyuanp/nerdtree-git-plugin' -- A NERDTree plugin showing git status