Neovim plugin to support Talon Voice
- neovim: https://neovim.io/
- Talon voice: https://talonvoice.com/
- neovim-talon: https://github.com/hands-free-vim/neovim-talon
Ideally, you want to use a neovim plugin manager like lazy.nvim.
After the typical lazy setup, you'll have to add the talon.nvim
plugin to your init.lua
. We also recommend the following other plugins for the best experience.
require('lazy').setup({
'hands-free-vim/talon.nvim',
-- dependencies useful for neovim-talon
'dhruvasagar/vim-zoom',
'gcmt/taboo.vim',
})
This method is not recommended but you can try directly cloning the plugin into your nvim data folder:
git clone https://github.com/hands-free-vim/talon.nvim
If you aren't using a plugin manager that automatically calls setup for you (e.g. it is needed for lazy), you will need this somewhere in your neovim config, e.g. in init.lua:
require("talon").setup()
Some Linux package managers ship with a version of nvim
too old for Lazy. If this is the case, install nvim via another method.