diff options
author | Minijackson <minijackson@riseup.net> | 2021-06-09 09:58:50 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2021-06-09 09:58:50 +0200 |
commit | 5b6e7aee87d352718cbe6ed016b2b2eae5dfc734 (patch) | |
tree | 80a3210d9d926a5068bb0798a2c0c84ea69a4de3 /common | |
parent | b8a237c4d84c3d0709b12d8bea350380adfa51cb (diff) | |
download | nixos-config-reborn-5b6e7aee87d352718cbe6ed016b2b2eae5dfc734.tar.gz nixos-config-reborn-5b6e7aee87d352718cbe6ed016b2b2eae5dfc734.zip |
vim: don't override local tabstop and shiftwidth
Diffstat (limited to 'common')
-rw-r--r-- | common/vim.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/vim.nix b/common/vim.nix index ced8f81..63b916e 100644 --- a/common/vim.nix +++ b/common/vim.nix | |||
@@ -36,7 +36,7 @@ let | |||
36 | inherit (config.vim) beforePlugins; | 36 | inherit (config.vim) beforePlugins; |
37 | 37 | ||
38 | customRC = '' | 38 | customRC = '' |
39 | lua require("myConfig") | 39 | autocmd VimEnter * lua require("myConfig") |
40 | 40 | ||
41 | ${cfg.extraConfig} | 41 | ${cfg.extraConfig} |
42 | ''; | 42 | ''; |