Neovim: Difference between revisions
Jump to navigation
Jump to search
Line 48: | Line 48: | ||
* vim-airline, vs powerline, vs vim-bufferline |
* vim-airline, vs powerline, vs vim-bufferline |
||
* Color theme ''solarized''. |
* Color theme ''solarized''. |
||
== To Do == |
|||
;True color |
|||
* [https://gist.github.com/XVilka/8346728 Colours in terminal] |
|||
* [https://github.com/morhetz/gruvbox/wiki/Terminal-specific morhetz/gruvbox - Terminal-specific] |
|||
;Gui |
|||
* [https://github.com/equalsraf/neovim-qt neovim-qt] |
|||
;Color scheme |
|||
* Solarized |
|||
* gruvbox |
Revision as of 08:08, 25 October 2016
References
Install
Follow the install guide Installing Neovim.
Default ini files are located at ~/.config/nvim/init.vim. To import Vim settings (FAQ :help nvim-from-vim)
mkdir ~/.config
ln -s ~/.vim ~/.config/nvim
ln -s ~/.vimrc ~/.config/nvim/init.vim
Plugin manager
We install vim-plug:
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Plugins
- https://github.com/junegunn/vim-easy-align
- https://github.com/tpope/vim-sensible (on vim.org)
- https://github.com/tpope/vim-sleuth (on vim.org)
- https://github.com/easymotion/vim-easymotion
- https://github.com/scrooloose/nerdtree.git
Content of ~/.config/nvim/init.vim:
Reload the init script and install plugins:
:so $MYVIMRC
"... or ':so %' if it is current file
:PlugInstall
To update plugins:
:PlugUpdate
- To test
- vim-airline, vs powerline, vs vim-bufferline
- Color theme solarized.
To Do
- True color
- Gui
- Color scheme
- Solarized
- gruvbox