SpaceNeovim is Spacemacs for Neovim. If you are unfamiliar with Spacemacs, you can read more about the motivation behind that on their website.
Prerequisites:
git
on your path (brew install git
)nvim
on your path (brew install neovim/neovim --head
)- Neovim python bindings (
pip install neovim
orpip3
)
SpaceNeovim is a configurable distribution like Spacemacs.
To start using SpaceNeovim you can use the following oneliner,
sh -c "$(curl -fsSL https://raw.githubusercontent.com/tehnix/spaceneovim/master/install.sh)"
It will,
- Backup existing Neovim configuration to
.config/nvim.<date>.backup
- Download a default
init.vim
- Download
autoload/spaceneovim.vim
- Set up vim-plug
- Clone down the layers repository
- Install default plugins
You can check out the process in the Asciicast below,
Go to the layers repository for more information on the different layers.
To enable a layer, include it inside the Layers()
function, by calling Layer '<layer name>'
. A small example,
function! Layers()
" Configuration Layers declaration.
" Add layers with `Layer '+layername'` and add individual packages
" with `ExtraPlugin 'githubUser/Repo'`.
Layer '+core/behavior'
Layer '+nav/buffers'
Layer ...
PrivateLayer '+lang/elm'
ExtraPlugin 'liuchengxu/space-vim-dark'
ExtraPlugin 'neovimhaskell/haskell-vim', { 'for': 'haskell' }
endfunction
The above also demonstrates ExtraPlugin
, which will install plugins with vim-plug
. The configuration is optional.
If you want to manage your own layers, you can put them into .config/nvim/spaceneovim-layers/private/
and load them like normal layers, except using PrivateLayer
instead. E.g. PrivateLayer '+lang/elm'
.
To set configuration values before layers and plugins load, set them in your UserInit()
,
function! UserInit()
" This block is called at the very startup of Spaceneovim initialization
" before layers configuration.
" Overwrite the leader key,
SetLeader '<Space>'
" Overwrite the layers repository,
SetLayerRepo 'git@github.com:Tehnix/spaceneovim-layers.git'
endfunction
To set configuration values after layers and plugins load, set them in your UserConfig()
,
function! UserConfig()
" This block is called after Spaceneovim layers are configured.
" This will set the background to 'dark', the theme to 'space-vim-dark' and the airline theme to 'violet' (airline argument is optional).
SetThemeWithBg 'dark', 'space-vim-dark', 'violet'
" Alternatively, if you don't want to set the background, use,
SetTheme 'space-vim-dark', 'violet'
endfunction
The above SetTheme <background color> <theme name> <airline theme>
is simply a convenience function. Similarly SetLeader
allows you to set the key that activates vim-leader
.
If you want to know what happens in autoload/spaceneovim.vim
, check out the beginning of the file for a brief introduction into what is going on in the script.
To easily test your changes it is recommended to symlink the various files into your .config/nvim
folder. The ones you want to replace are
.config/nvim/spaceneovim-layers
to test layer changes.config/nvim/autoload/spaceneovim.vim
to test core changes.config/nvim/init.vim
to test changes tovimrc.sample.vim
If you want to develop/test out your own layers, there are four ways to do it:
- Add your layer in
.config/nvim/spaceneovim-layers/private/
and load them viaPrivateLayer
. - Point to your own git repository with
SetLayerRepo
, e.g.SetLayerRepo 'git@github.com:Tehnix/spaceneovim-layers.git'
. This should be set inUserInit()
. - Manage the
spaceneovim-layers
directory yourself - the bootstrap process basically just checks if the directory exists, and if not it clones it down. Symlinking or putting in your own directory here will also work. - Add a layer from a specific folder on your computer with
SourcedLayer
, for exampleSourcedLayer '/Users/myuser/.config/mylayers' '+cool/layer'
.
You can enable debugging output by calling EnableDebug
(or EnableVerboseDebug
) in your init.vim
file. This should be set in UserInit()
.
It is recommended to add the following to .git/hooks/pre-commit
,
# Get the current dir
startDir=$(pwd)
# Get the project root
rootDir=$(git rev-parse --show-toplevel)
cd $rootDir
# Run vint
vint vimrc.sample.vim autoload/*.vim
See LICENSE.
Can't see colors in tmux: This may be a problem with xterm-256 colors, as per issue #16 (thanks zacacollier) add the following your tmux.conf
and restert your tmux with tmux kill-server
,
set -g default-terminal "tmux-256color"
set -ga terminal-overrides ',xterm-256color:Tc'
LanguageClient:autocmd (and other Python related) errors
Example error:
no notification handler registered for "/Users/ramanujam/.config/nvim/plugged/La nguageClient-neovim/rplugin/python3/LanguageClient:autocmd:CursorMoved:*"
Sometimes one of the plugins included might rely on updated Python bindings for Neovim, especially heavily updated, active plugins. Should you be getting Python errors even though you've installed the neovim bindings, update your bindings using:
pip install neovim
pip3 install neovim #python 2 is still default in some MacOS