configuration.nix/home/programs/nixvim.nix

13 lines
249 B
Nix
Raw Normal View History

2023-08-05 10:29:27 +05:30
{pkgs, ...}: {
2023-08-04 18:08:07 +05:30
programs.nixvim = {
enable = true;
2023-08-05 10:29:46 +05:30
viAlias = true;
vimAlias = true;
2023-08-05 10:30:21 +05:30
clipboard.providers.wl-copy.enable = true;
2023-08-05 10:29:27 +05:30
colorscheme = "dracula";
extraPlugins = with pkgs.vimPlugins; [
dracula-nvim
];
2023-08-04 18:08:07 +05:30
};
}