nixos/common/neovim/coq.nix
2024-11-06 14:03:40 +01:00

15 lines
406 B
Nix
Executable file

{ 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
'';
}
];
};
}