15 lines
193 B
Nix
15 lines
193 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.neovim = {
|
|
enable = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
plugins = with pkgs.vimPlugins; [
|
|
fugitive
|
|
|
|
nvim-treesitter
|
|
];
|
|
};
|
|
}
|