diff options
author | Chris <[email protected]> | 2020-08-07 11:51:01 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-08-07 11:51:01 -0400 |
commit | bbdc2c3fbd0668b78bde204d365991b1e93c7beb (patch) | |
tree | 850bcb0767b5e1d35e65b1193d4b84bc292b969e /vim-plug | |
parent | 8af5cb12bfc38bc6f847c4f02e649008dbd0829d (diff) |
using coc-python with pyright
Diffstat (limited to 'vim-plug')
-rw-r--r-- | vim-plug/plugins.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vim-plug/plugins.vim b/vim-plug/plugins.vim index 608ecb8e..340e5d52 100644 --- a/vim-plug/plugins.vim +++ b/vim-plug/plugins.vim @@ -61,6 +61,7 @@ call plug#begin('~/.config/nvim/autoload/plugged') Plug 'neoclide/coc.nvim', {'branch': 'release'} " Status Line Plug 'vim-airline/vim-airline' + " Plug 'hardcoreplayers/spaceline.vim' " Plug 'vim-airline/vim-airline-themes' " Ranger " Plug 'francoiscabrol/ranger.vim' @@ -102,9 +103,18 @@ call plug#begin('~/.config/nvim/autoload/plugged') Plug 'puremourning/vimspector' " Better tabline Plug 'mg979/vim-xtabline' + " undo time travel Plug 'mbbill/undotree' + " highlight all matches under cursor Plug 'RRethy/vim-illuminate' + " Find and replace Plug 'brooth/far.vim' + " Auto change html tags + Plug 'AndrewRadev/tagalong.vim' + " live server + Plug 'turbio/bracey.vim' + " Typescript syntax + Plug 'HerringtonDarkholme/yats.vim' endif |