1
0
Fork
You've already forked ElliotVim
0
No description
  • Vim Script 100%
Find a file
2026年06月12日 13:59:02 +08:00
after feat: init python lsp 2026年04月01日 22:03:50 +08:00
autoload/elliot chore: update statusline 2024年05月28日 16:22:23 +08:00
pack chore: update plugins 2026年06月12日 13:59:02 +08:00
plugin fix: remove abbr completion 2026年05月06日 17:07:00 +08:00
swap chore: move swap folder inside repo 2023年06月29日 10:17:50 +08:00
.gitignore chore: move swap folder inside repo 2023年06月29日 10:17:50 +08:00
.gitmodules refactor: clean config 2025年08月12日 11:28:59 +08:00
LICENSE chore: add license 2021年03月08日 21:09:03 +08:00
README.md docs: fix typo in readme 2023年08月09日 10:21:19 +08:00
vimrc feat: install vsnip 2025年06月20日 13:33:18 +08:00

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