Skip to content

Latest commit

 

History

History
38 lines (23 loc) · 807 Bytes

README.md

File metadata and controls

38 lines (23 loc) · 807 Bytes

Elliot's personal vim config

Usage

  1. Clone
git clone --recursive https://github.com/Eliot00/ElliotVim ~/.vim
  1. Install language server

Open vim and use :CocInstall coc-pyright, see detail in coc.nvim

Plugin Manage(Native way)

Add plugins

Use git submodule, like git submodule add https://github.com/zivyangll/git-blame.vim pack/plugins/start/git-blame

Update plugins

Update plugins is just a case of updating git submodule:

git submodule update --recursive --remote

Delete Plugins

Removing a package is just a case of removing the git submodule.

git submodule deinit pack/plugins/start/vim-airline
git rm pack/plugins/start/vim-airline
rm -rf .git/modules/pack/plugins/start/vim-airline