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
|
|
|
};
|
|
|
|
}
|