ref(nix): dropped vim legacy support

This commit is contained in:
Léana 江 2024-01-19 21:25:47 +01:00 committed by Léana 江
parent 8310cb9794
commit c9e9e4a4de
4 changed files with 21 additions and 2837 deletions

View file

@ -0,0 +1,18 @@
{pkgs, ...}: {
programs = {
vim = {
enable = true;
defaultEditor = true;
extraConfig = builtins.readFile ./vimrc;
plugins = with pkgs.vimPlugins;[
vim-sleuth
vim-surround
vim-fugitive
vim-commentary
undotree
tabular
vim-wakatime
];
};
};
}