Add .vimrc config

This commit is contained in:
2023-08-29 15:50:10 -04:00
parent 88725fe522
commit 4738d7caf3
4 changed files with 612 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
with lib; {
options.modules.vim = {
enable = mkOption { type = types.bool; default = false; };
};
config = mkIf config.modules.vim.enable {
home.file.".vimrc".source = ./vim/.vimrc;
};
}