nixos/common/neovim/coq.nix

16 lines
406 B
Nix
Raw Permalink Normal View History

2024-02-16 13:59:46 +01:00
{ pkgs, ... }:
{
programs.neovim = {
plugins = with pkgs.vimPlugins; [
{
plugin = Coqtail;
config = ''
nnoremap <A-down> <Plug>CoqNext<Plug>CoqJumpToEnd
nnoremap <A-up> <Plug>CoqUndo<Plug>CoqJumpToEnd
nnoremap <A-right> <Plug>CoqToLine
'';
}
];
};
}