Add autoclose and vim-surround plugins
This commit is contained in:
parent
e8e9c7ea01
commit
1c7e760292
2 changed files with 9 additions and 2 deletions
|
@ -12,7 +12,8 @@ require'lspconfig'.sumneko_lua.setup {
|
||||||
},
|
},
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
-- Get the language server to recognize the `vim` global
|
-- Get the language server to recognize the `vim` global
|
||||||
globals = {'vim'},
|
globals = { 'vim' },
|
||||||
|
disable = { 'lowercase-global' },
|
||||||
},
|
},
|
||||||
workspace = {
|
workspace = {
|
||||||
-- Make the server aware of Neovim runtime files
|
-- 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,
|
run = function() require('nvim-treesitter.install').update({ with_sync = true }) end,
|
||||||
}
|
}
|
||||||
|
|
||||||
-- COLOR SCHEMES
|
-- Color schemes
|
||||||
use 'morhetz/gruvbox'
|
use 'morhetz/gruvbox'
|
||||||
use 'sjl/badwolf'
|
use 'sjl/badwolf'
|
||||||
|
|
||||||
|
-- Auto close parens and such
|
||||||
|
use 'Townk/vim-autoclose'
|
||||||
|
|
||||||
|
-- Surround
|
||||||
|
use 'tpope/vim-surround'
|
||||||
|
|
||||||
-- NERDTree
|
-- NERDTree
|
||||||
use 'preservim/nerdtree'
|
use 'preservim/nerdtree'
|
||||||
use 'Xuyuanp/nerdtree-git-plugin' -- A NERDTree plugin showing git status
|
use 'Xuyuanp/nerdtree-git-plugin' -- A NERDTree plugin showing git status
|
||||||
|
|
Loading…
Add table
Reference in a new issue