summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/vim.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/common/vim.nix b/common/vim.nix
index ddb901a..821d43b 100644
--- a/common/vim.nix
+++ b/common/vim.nix
@@ -115,5 +115,15 @@ in {
115 environment.sessionVariables = { 115 environment.sessionVariables = {
116 EDITOR = "nvim"; 116 EDITOR = "nvim";
117 }; 117 };
118
119 home-manager.users.minijackson = { ... }:
120 {
121 xdg.dataFile."nvim/backup/.keep".text = "";
122 };
123
124 home-manager.users.root = { ... }:
125 {
126 xdg.dataFile."nvim/backup/.keep".text = "";
127 };
118 }; 128 };
119} 129}