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.
96 lines
1.9 KiB
Cheetah
96 lines
1.9 KiB
Cheetah
2 years ago
|
" chezmoi:template:left-delimiter="{{
|
||
|
"{{- /* vim: set filetype=vim: */ -}}
|
||
1 year ago
|
Plug 'bfrg/vim-jq'
|
||
|
Plug 'editorconfig/editorconfig-vim', { 'tag': 'v1.1.1' }
|
||
|
Plug 'tpope/vim-surround', { 'tag': 'v2.2' }
|
||
|
Plug 'preservim/nerdtree', { 'tag': '6.10.16' }
|
||
|
Plug 'cespare/vim-toml', { 'for': 'toml' }
|
||
4 years ago
|
Plug 'SirVer/ultisnips', { 'tag': '3.2' }
|
||
|
Plug 'lifepillar/pgsql.vim', { 'for': [ 'sql' ] }
|
||
|
|
||
1 year ago
|
" Themes
|
||
|
Plug 'NLKNguyen/papercolor-theme'
|
||
|
Plug 'joshdick/onedark.vim'
|
||
|
Plug 'morhetz/gruvbox'
|
||
|
Plug 'nanotech/jellybeans.vim', { 'tag': 'v1.7' }
|
||
|
Plug 'romainl/Apprentice'
|
||
|
Plug 'sheerun/vim-wombat-scheme'
|
||
|
Plug 'tomasr/molokai'
|
||
|
Plug 'vim-airline/vim-airline'
|
||
|
Plug 'vim-airline/vim-airline-themes'
|
||
|
|
||
|
"{{ if lookPath "fzf" -}}
|
||
|
Plug 'junegunn/fzf', { 'tag': '0.40.0' }
|
||
|
Plug 'junegunn/fzf.vim'
|
||
|
"{{ end -}}
|
||
|
|
||
|
"{{ if lookPath "go" }}
|
||
|
Plug 'fatih/vim-go'
|
||
|
"{{ end }}
|
||
|
|
||
|
"{{ if lookPath "rustc" }}
|
||
|
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
||
|
"{{ end }}
|
||
|
|
||
|
"{{ if .development }}
|
||
4 years ago
|
Plug 'dense-analysis/ale', {
|
||
2 years ago
|
\ 'tag': 'v3.3.0',
|
||
4 years ago
|
\ 'for': [
|
||
|
\ 'bash',
|
||
|
\ 'css',
|
||
|
\ 'dockerfile',
|
||
|
\ 'go',
|
||
|
\ 'graphql',
|
||
|
\ 'html',
|
||
|
\ 'javascript',
|
||
|
\ 'json',
|
||
|
\ 'less',
|
||
|
\ 'make',
|
||
|
\ 'markdown',
|
||
|
\ 'php',
|
||
|
\ 'python',
|
||
2 years ago
|
\ 'ruby',
|
||
4 years ago
|
\ 'rust',
|
||
|
\ 'scss',
|
||
|
\ 'sh',
|
||
|
\ 'sql',
|
||
|
\ 'tcl',
|
||
|
\ 'toml',
|
||
|
\ 'typescript',
|
||
|
\ 'vim',
|
||
|
\ 'vue',
|
||
|
\ 'xml',
|
||
|
\ 'yaml'
|
||
|
\ ]
|
||
|
\ }
|
||
|
|
||
1 year ago
|
"{{ if lookPath "node" }}
|
||
4 years ago
|
Plug 'prettier/vim-prettier', {
|
||
2 years ago
|
\ 'branch': 'master',
|
||
4 years ago
|
\ 'do': 'npm install',
|
||
|
\ 'for': [
|
||
|
\ 'css',
|
||
|
\ 'graphql',
|
||
|
\ 'html',
|
||
|
\ 'javascript',
|
||
|
\ 'json',
|
||
|
\ 'less',
|
||
|
\ 'markdown',
|
||
|
\ 'package',
|
||
|
\ 'php',
|
||
|
\ 'pug',
|
||
|
\ 'python',
|
||
|
\ 'ruby',
|
||
|
\ 'scss',
|
||
|
\ 'sh',
|
||
|
\ 'swift',
|
||
|
\ 'toml',
|
||
|
\ 'typescript',
|
||
|
\ 'vue',
|
||
|
\ 'xml',
|
||
|
\ 'yaml'
|
||
|
\ ]
|
||
|
\ }
|
||
1 year ago
|
"{{ end }}
|
||
|
"{{ end }}
|