├── .gitignore ├── LICENSE ├── README.md ├── en ├── README.md ├── chapter01.md ├── chapter02.md ├── chapter03.md ├── chapter04-demo.js ├── chapter04.md ├── chapter05.md ├── chapter06.md ├── chapter07.md ├── plugins │ ├── airline.md │ ├── easyalign.md │ ├── index.md │ ├── nerdtree.md │ └── surround.md ├── vim-modes.md ├── vim-plugin.md └── vimrc.vim └── zh-CN ├── README.md ├── chapter01.md ├── chapter02.md ├── chapter03.md ├── chapter04-demo.js ├── chapter04.md ├── chapter05.md ├── chapter06.md ├── chapter07.md ├── plugins ├── airline.md ├── easyalign.md ├── index.md ├── nerdtree.md └── surround.md ├── vim-modes.md ├── vim-plugin.md └── vimrc.vim /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/README.md -------------------------------------------------------------------------------- /en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/README.md -------------------------------------------------------------------------------- /en/chapter01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/chapter01.md -------------------------------------------------------------------------------- /en/chapter02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/chapter02.md -------------------------------------------------------------------------------- /en/chapter03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/chapter03.md -------------------------------------------------------------------------------- /en/chapter04-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/chapter04-demo.js -------------------------------------------------------------------------------- /en/chapter04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/chapter04.md -------------------------------------------------------------------------------- /en/chapter05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/chapter05.md -------------------------------------------------------------------------------- /en/chapter06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/chapter06.md -------------------------------------------------------------------------------- /en/chapter07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/chapter07.md -------------------------------------------------------------------------------- /en/plugins/airline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/plugins/airline.md -------------------------------------------------------------------------------- /en/plugins/easyalign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/plugins/easyalign.md -------------------------------------------------------------------------------- /en/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/plugins/index.md -------------------------------------------------------------------------------- /en/plugins/nerdtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/plugins/nerdtree.md -------------------------------------------------------------------------------- /en/plugins/surround.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/plugins/surround.md -------------------------------------------------------------------------------- /en/vim-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/vim-modes.md -------------------------------------------------------------------------------- /en/vim-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/vim-plugin.md -------------------------------------------------------------------------------- /en/vimrc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/en/vimrc.vim -------------------------------------------------------------------------------- /zh-CN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/README.md -------------------------------------------------------------------------------- /zh-CN/chapter01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/chapter01.md -------------------------------------------------------------------------------- /zh-CN/chapter02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/chapter02.md -------------------------------------------------------------------------------- /zh-CN/chapter03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/chapter03.md -------------------------------------------------------------------------------- /zh-CN/chapter04-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/chapter04-demo.js -------------------------------------------------------------------------------- /zh-CN/chapter04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/chapter04.md -------------------------------------------------------------------------------- /zh-CN/chapter05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/chapter05.md -------------------------------------------------------------------------------- /zh-CN/chapter06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/chapter06.md -------------------------------------------------------------------------------- /zh-CN/chapter07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/chapter07.md -------------------------------------------------------------------------------- /zh-CN/plugins/airline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/plugins/airline.md -------------------------------------------------------------------------------- /zh-CN/plugins/easyalign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/plugins/easyalign.md -------------------------------------------------------------------------------- /zh-CN/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/plugins/index.md -------------------------------------------------------------------------------- /zh-CN/plugins/nerdtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/plugins/nerdtree.md -------------------------------------------------------------------------------- /zh-CN/plugins/surround.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/plugins/surround.md -------------------------------------------------------------------------------- /zh-CN/vim-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/vim-modes.md -------------------------------------------------------------------------------- /zh-CN/vim-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/vim-plugin.md -------------------------------------------------------------------------------- /zh-CN/vimrc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dofy/learn-vim/HEAD/zh-CN/vimrc.vim --------------------------------------------------------------------------------