No description
- Vim Script 100%
| after | feat: init python lsp | |
| autoload/elliot | chore: update statusline | |
| pack | chore: update plugins | |
| plugin | fix: remove abbr completion | |
| swap | chore: move swap folder inside repo | |
| .gitignore | chore: move swap folder inside repo | |
| .gitmodules | refactor: clean config | |
| LICENSE | chore: add license | |
| README.md | docs: fix typo in readme | |
| vimrc | feat: install vsnip | |
Elliot's personal vim config
Usage
- Clone
git clone --recursive https://github.com/Eliot00/ElliotVim ~/.vim
- 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