├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PLUGINS.md ├── README.md ├── chapter ├── Common problems.md ├── List-Of-Colorschemes.md ├── List-Of-Plugins.md ├── Miscellaneous.md ├── Technical quirks.md ├── bracketed-paste.md ├── editing-huge-files-is-slow.md ├── editing-small-files-is-slow.md ├── function-search-undo.md ├── map-capslock-to-control.md ├── standard-plugins.md ├── vim-distributions.md └── why-hjkl-for-navigation.md ├── contents └── minimal-vimrc.vim └── tools └── chinese_linter.vim /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/LICENSE -------------------------------------------------------------------------------- /PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/PLUGINS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/README.md -------------------------------------------------------------------------------- /chapter/Common problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/Common problems.md -------------------------------------------------------------------------------- /chapter/List-Of-Colorschemes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/List-Of-Colorschemes.md -------------------------------------------------------------------------------- /chapter/List-Of-Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/List-Of-Plugins.md -------------------------------------------------------------------------------- /chapter/Miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/Miscellaneous.md -------------------------------------------------------------------------------- /chapter/Technical quirks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/Technical quirks.md -------------------------------------------------------------------------------- /chapter/bracketed-paste.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/bracketed-paste.md -------------------------------------------------------------------------------- /chapter/editing-huge-files-is-slow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/editing-huge-files-is-slow.md -------------------------------------------------------------------------------- /chapter/editing-small-files-is-slow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/editing-small-files-is-slow.md -------------------------------------------------------------------------------- /chapter/function-search-undo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/function-search-undo.md -------------------------------------------------------------------------------- /chapter/map-capslock-to-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/map-capslock-to-control.md -------------------------------------------------------------------------------- /chapter/standard-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/standard-plugins.md -------------------------------------------------------------------------------- /chapter/vim-distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/vim-distributions.md -------------------------------------------------------------------------------- /chapter/why-hjkl-for-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/chapter/why-hjkl-for-navigation.md -------------------------------------------------------------------------------- /contents/minimal-vimrc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/contents/minimal-vimrc.vim -------------------------------------------------------------------------------- /tools/chinese_linter.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wsdjeg/vim-galore-zh_cn/HEAD/tools/chinese_linter.vim --------------------------------------------------------------------------------