Files
cnix/home/modules/devtools/neovim/plugins/vim-fugitive.nix
2024-09-02 19:14:35 +02:00

16 lines
241 B
Nix

{pkgs, ...}: {
programs.neovim.plugins = with pkgs.vimPlugins; [
{
plugin = vim-fugitive;
type = "viml";
config =
/*
vim
*/
''
nmap <space>G :Git<CR>
'';
}
];
}