Update vim plugins

main
Buddy Sandidge 4 years ago
parent 209c74ca72
commit e8f4741a56

@ -12,6 +12,9 @@ function! s:CloseIfOnlyNerdTreeLeft()
endif
endfunction
let g:NERDTreeDirArrowExpandable = '▸'
let g:NERDTreeDirArrowCollapsible = '▾'
let NERDTreeDirArrows=1
let NERDTreeIgnore = ['\.pyc$', '\.swp$']
map <leader>nt :NERDTreeToggle<CR>

@ -3,13 +3,42 @@ call plug#begin('~/.vim/plugged')
Plug 'NLKNguyen/papercolor-theme'
Plug 'SirVer/ultisnips', { 'tag': '3.2' }
Plug 'cespare/vim-toml', { 'for': 'toml' }
Plug 'dense-analysis/ale', { 'tag': 'v2.7.0' }
Plug 'editorconfig/editorconfig-vim', { 'tag': 'v1.1.1' }
Plug 'fatih/vim-go', { 'tag': 'v1.22' }
Plug 'fatih/vim-go', { 'tag': 'v1.24', 'for': [ 'go' ] }
Plug 'hashivim/vim-hashicorp-tools'
Plug 'lifepillar/pgsql.vim'
Plug 'lifepillar/pgsql.vim', { 'for': [ 'sql' ] }
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
Plug 'preservim/nerdtree', { 'on': 'NERDTreeToggle', 'tag': '6.9.8' }
Plug 'dense-analysis/ale', {
\ 'tag': 'v3.0.0',
\ 'for': [
\ 'bash',
\ 'css',
\ 'dockerfile',
\ 'go',
\ 'graphql',
\ 'html',
\ 'javascript',
\ 'json',
\ 'less',
\ 'make',
\ 'markdown',
\ 'php',
\ 'python',
\ 'ruby',
\ 'rust',
\ 'scss',
\ 'sh',
\ 'sql',
\ 'tcl',
\ 'toml',
\ 'typescript',
\ 'vim',
\ 'vue',
\ 'xml',
\ 'yaml'
\ ]
\ }
Plug 'prettier/vim-prettier', {
\ 'branch': 'release/1.x',
\ 'do': 'npm install',
@ -39,6 +68,5 @@ Plug 'prettier/vim-prettier', {
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
Plug 'sheerun/vim-wombat-scheme'
Plug 'tpope/vim-surround'
Plug 'vim-scripts/CSApprox'
call plug#end()

Loading…
Cancel
Save