Add autoclose and vim-surround plugins
This commit is contained in:
parent
e8e9c7ea01
commit
1c7e760292
2 changed files with 9 additions and 2 deletions
|
@ -13,6 +13,7 @@ require'lspconfig'.sumneko_lua.setup {
|
|||
diagnostics = {
|
||||
-- Get the language server to recognize the `vim` global
|
||||
globals = { 'vim' },
|
||||
disable = { 'lowercase-global' },
|
||||
},
|
||||
workspace = {
|
||||
-- Make the server aware of Neovim runtime files
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue