1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

move Vim learning resources to seprate files

This commit is contained in:
jdhao 2020-10-26 22:40:09 +08:00
parent c0ec24825f
commit 34d3fccb24
3 changed files with 17 additions and 13 deletions

View File

@ -83,6 +83,10 @@ If you still have an issue, you may [open a new issue](https://github.com/jdhao/
# Further readings
Some of the resources that I find helpful in mastering Vim is
[here](docs/vim_resources.md). You may also be interested in my post in
configuring Vim on different platforms:
+ [Config nvim on Linux for Python development](https://jdhao.github.io/2018/12/24/centos_nvim_install_use_guide_en/)
+ [Nvim config on Windows 10](https://jdhao.github.io/2018/11/15/neovim_configuration_windows/)
+ [Nvim-qt config on Windows 10](https://jdhao.github.io/2019/01/17/nvim_qt_settings_on_windows/)

13
docs/vim_resources.md Normal file
View File

@ -0,0 +1,13 @@
Below are a list of resources that inspire me. This list is non-exhaustive as I
can not remember the source of many settings.
- http://stevelosh.com/blog/2010/09/coming-home-to-vim/
- https://github.com/tamlok/tvim/blob/master/.vimrc
- https://nvie.com/posts/how-i-boosted-my-vim/
- https://blog.carbonfive.com/2011/10/17/vim-text-objects-the-definitive-guide/
- https://sanctum.geek.nz/arabesque/vim-anti-patterns/
- https://github.com/gkapfham/dotfiles/blob/master/.vimrc
- https://google.github.io/styleguide/vimscriptguide.xml
- https://github.com/romainl/idiomatic-vimrc
- https://github.com/mhinz/vim-galore
- https://learnvimscriptthehardway.stevelosh.com/

View File

@ -63,16 +63,3 @@ for s:fname in g:config_file_list
execute printf('source %s/%s', g:nvim_config_root, s:fname)
endfor
"}
"{ A list of resources which inspire me
" This list is non-exhaustive as I can not remember the source of many
" settings.
" - http://stevelosh.com/blog/2010/09/coming-home-to-vim/
" - https://github.com/tamlok/tvim/blob/master/.vimrc
" - https://nvie.com/posts/how-i-boosted-my-vim/
" - https://blog.carbonfive.com/2011/10/17/vim-text-objects-the-definitive-guide/
" - https://sanctum.geek.nz/arabesque/vim-anti-patterns/
" - https://github.com/gkapfham/dotfiles/blob/master/.vimrc
" - https://google.github.io/styleguide/vimscriptguide.xml
"}