23 lines
644 B
Markdown
23 lines
644 B
Markdown
# simvim
|
|
|
|
This is wuniu's vim profiles which is simple and like to vim original
|
|
experience.
|
|
|
|
Note below describes some interesting tricks.
|
|
|
|
## Load Sequence
|
|
|
|
1. vimrc and scripts are triggered by vimrc
|
|
1. plugins under `plugins/` and scripts triggered by them
|
|
1. packs under `pack/plugin/start/` and etc.
|
|
|
|
## Generate Doc
|
|
|
|
After installing / adding a new pack with `doc/` inside. Generate doc tags
|
|
using `packloadall | silent! helptags ALL`, which will regenerate all tags of docs.
|
|
|
|
## Reloading `vimrc` File
|
|
|
|
After editing vimrc file, one can execute it by `:so $MYVIMRC`. But this will
|
|
only *execute* it but won't reload vim instance itself.
|