VSpaceCode and NeoVim Together
Note on using VSpaceCode plugin and Neovim Plugin
Having settled on Visual Studio Code with the VSpaceCode and NeoVim plugins, I want them to work together. The first step is to get the NeoVim plugin to pass the keypresses to VSpaceCode. Here are the steps (on MacOS)
- Open or create ~/config/nvim/init.vim
- Add a command to pass the keypress along
" Integrate with whichkey for spacemacs-style space key
nnoremap <space> :call VSCodeNotify('whichkey.show')<CR>
Now pressing the space bar will again go to the WhichKey plugin in Visual Studio Code.
This appears to be an interesting Youtube Playlist on how one person gets some NeoVim plugins working with VSpaceCode.