You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
241 B
13 lines
241 B
2 years ago
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.neovim = {
|
||
|
enable = true;
|
||
|
viAlias = true;
|
||
|
vimAlias = true;
|
||
|
defaultEditor = true;
|
||
2 years ago
|
plugins = with pkgs.vimPlugins; [ vim-nix vim-markdown ];
|
||
2 years ago
|
extraConfig = builtins.readFile ./vimrc;
|
||
2 years ago
|
};
|
||
|
}
|