jessun1990
2021-02-12 23:02:39 +08:00
" UI ==========================
Plug 'sheerun/vim-polyglot' " 语法高亮
Plug 'flazz/vim-colorschemes' " 配色主题
Plug 'overcache/NeoSolarized'
Plug 'itchyny/lightline.vim' " 底部条
Plug 'sainnhe/forest-night'
" general =====================
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
" code ======================== Plug 'tommcdo/vim-fugitive-blame-ext' " git 信息
Plug 'tpope/vim-fugitive' " git 相关
Plug 'dense-analysis/ale'
Plug 'liuchengxu/vista.vim' " tag
Plug 'ap/vim-css-color'
Plug 'scrooloose/nerdcommenter' " 注释
Plug 'tpope/vim-surround' " 快捷操作
" coc.nvim
Plug 'neoclide/coc.nvim', {'do': 'yarn install --frozen-lockfile'}
Plug 'fannheyward/coc-marketplace', {'do': 'yarn install --frozen-lockfile'}
Plug 'iamcco/coc-actions', {'do': 'yarn install --frozen-lockfile'}
Plug 'neoclide/coc-lists', {'do': 'yarn install --frozen-lockfile'}
Plug 'neoclide/coc-yank', {'do': 'yarn install --frozen-lockfile'}
Plug 'neoclide/coc-snippets', {'do': 'yarn install --frozen-lockfile'}
Plug 'iamcco/coc-spell-checker', {'do': 'yarn install --frozen-lockfile'}
Plug 'neoclide/coc-git', {'do': 'yarn install --frozen-lockfile'}
Plug 'weirongxu/coc-explorer', {'do': 'yarn install --frozen-lockfile'}
Plug 'josa42/coc-sh', {'do': 'yarn install --frozen-lockfile && npm i -g bash-language-server', 'for': 'sh'}
" rust
Plug 'fannheyward/coc-rust-analyzer', {'do': 'yarn install --frozen-lockfile', 'for': 'rust'}
" gopls
Plug 'josa42/coc-go', {'do': 'yarn install --frozen-lockfile', 'for': 'go'}
" markdown
" Plug 'plasticboy/vim-markdown', {'for': 'markdown'}
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' }
Plug 'neoclide/coc-json', {'do': 'yarn install --frozen-lockfile', 'for': 'json'}
Plug 'neoclide/coc-yaml', {'do': 'yarn install --frozen-lockfile', 'for': 'yaml'}
Plug 'neoclide/coc-css', {'do': 'yarn install --frozen-lockfile', 'for': 'css'}