You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
VimL
45 lines
1.1 KiB
VimL
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 'hashivim/vim-hashicorp-tools'
|
|
Plug 'lifepillar/pgsql.vim'
|
|
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
|
|
Plug 'preservim/nerdtree', { 'on': 'NERDTreeToggle', 'tag': '6.9.8' }
|
|
Plug 'prettier/vim-prettier', {
|
|
\ 'branch': 'release/1.x',
|
|
\ 'do': 'npm install',
|
|
\ 'for': [
|
|
\ 'css',
|
|
\ 'graphql',
|
|
\ 'html',
|
|
\ 'javascript',
|
|
\ 'json',
|
|
\ 'less',
|
|
\ 'markdown',
|
|
\ 'package',
|
|
\ 'php',
|
|
\ 'pug',
|
|
\ 'python',
|
|
\ 'ruby',
|
|
\ 'scss',
|
|
\ 'sh',
|
|
\ 'swift',
|
|
\ 'toml',
|
|
\ 'typescript',
|
|
\ 'vue',
|
|
\ 'xml',
|
|
\ 'yaml'
|
|
\ ]
|
|
\ }
|
|
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
|
Plug 'sheerun/vim-wombat-scheme'
|
|
Plug 'tpope/vim-surround'
|
|
Plug 'vim-scripts/CSApprox'
|
|
|
|
call plug#end()
|