My Neovim configuration.
installer
folder contains necessary Neovim install files- Neovim install zip file (you may use latest release)
installer\user_home\.ctags
: support markdown file outline with Tagbar. Exuberant Ctags is needed. Copy this file into user home (~
) folder.- External tools binary, such as Ctags.exe, rg.exe, cscope.exe, fzf.exe
nvim
folder contains Neovim configuration files. Put the folder at~\AppData\Local\
foldernvim\init.vim
: main configuration filenvim\ginit.vim
: further GUI configuration filenvim\autoload\plug.vim
: vim-plug manager
- Download Neovim install zip file. Unzip it to
C:\Neovim\
folder (or any folder you like) and addC:\Neovim\bin
to Windows environment PATH. - Copy
nvim
folder into~\AppData\Local\
folder. - Start nvim-qt.exe, and run
:PlugInstall
, have a cup of tea and wait for done. - Copy external tools binary into
C:\Neovim\bin\
folder (or any folder in Windows env. PATH). It depends on what plugin you will use.- Ctags.exe - used by Tagbar
- rg.exe - used by vim-ripgrep
- cscope.exe - used by CCTree
- fzf.exe - used by fzf.vim
- Restart
nvim-qt.exe
. Enjoy, explore, and tune with your style :-)
Note:
- Run
%LOCALAPPDATA%
in Windows file explorer to open~\AppData\Local\
folder. - Git is needed for vim-plug manager to clone plugins from GitHub.
-
Add Windows Sendto menu
- Create a
nvim-qt.exe
shortcut using Create Shortcut Wizard (right-click > Shortcut). - Open the run window - WIN+R.
- Type
shell:sendto
in the run box. Then OK. That opens the "sendto" folder. - Drag
nvim-qt.exe
shortcut from the desktop into the "sendto" folder.
- Create a
-
Make a Windows shortcut start relative to where the folder is
- Right-click on the
nvim-qt.exe
shortcut and select “Properties”. - Under the “Shortcut” tab, add
%CD%
in “Start in” field.
- Right-click on the
- http://vimsheet.com/ (Vim Cheatsheets)
- https://hea-www.harvard.edu/~fine/Tech/vi.html (Vim Key Binding List)
- http://www.moolenaar.net/habits.html (Seven habits of effective text editing, by Bram Moolenaar)