12 lines
249 B
Nix
12 lines
249 B
Nix
{pkgs, ...}: {
|
|
programs.nixvim = {
|
|
enable = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
clipboard.providers.wl-copy.enable = true;
|
|
colorscheme = "dracula";
|
|
extraPlugins = with pkgs.vimPlugins; [
|
|
dracula-nvim
|
|
];
|
|
};
|
|
}
|