John Storey
John Storey
Software Engineering and Happy Texan
Jun 20, 2023 1 min read

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)

  1. Open or create ~/config/nvim/init.vim
  2. 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.