diff options
author | Minijackson <minijackson@riseup.net> | 2023-05-02 09:06:36 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2023-05-02 09:17:45 +0200 |
commit | 6e49e51a1f99ef85d33fddfb1c0e13753cad4818 (patch) | |
tree | 7540a447c3df9e2d40f3ccc76dd125894de83e10 | |
parent | 4fbec324fa058b7d78e69fc7861546fd820c4068 (diff) | |
download | nixos-config-reborn-6e49e51a1f99ef85d33fddfb1c0e13753cad4818.tar.gz nixos-config-reborn-6e49e51a1f99ef85d33fddfb1c0e13753cad4818.zip |
vim: remove impatient, use builtin cache feature
-rw-r--r-- | common/vim.nix | 1 | ||||
-rw-r--r-- | dotfiles/vim/lua/myConfig.lua | 7 |
2 files changed, 3 insertions, 5 deletions
diff --git a/common/vim.nix b/common/vim.nix index e6c0ab8..5859185 100644 --- a/common/vim.nix +++ b/common/vim.nix | |||
@@ -124,7 +124,6 @@ inputs: { | |||
124 | 124 | ||
125 | # Other | 125 | # Other |
126 | comment-nvim | 126 | comment-nvim |
127 | impatient-nvim | ||
128 | null-ls-nvim | 127 | null-ls-nvim |
129 | tabular | 128 | tabular |
130 | tmux-complete-vim | 129 | tmux-complete-vim |
diff --git a/dotfiles/vim/lua/myConfig.lua b/dotfiles/vim/lua/myConfig.lua index df1fb64..254931b 100644 --- a/dotfiles/vim/lua/myConfig.lua +++ b/dotfiles/vim/lua/myConfig.lua | |||
@@ -1,3 +1,6 @@ | |||
1 | -- Enables byte-compiled, cached Lua module loading | ||
2 | vim.loader.enable() | ||
3 | |||
1 | -- Options | 4 | -- Options |
2 | ---------- | 5 | ---------- |
3 | 6 | ||
@@ -154,10 +157,6 @@ end, mapopts) | |||
154 | -- Plugins | 157 | -- Plugins |
155 | ---------- | 158 | ---------- |
156 | 159 | ||
157 | -- Impatient | ||
158 | |||
159 | require("impatient") | ||
160 | |||
161 | -- Gitsigns | 160 | -- Gitsigns |
162 | 161 | ||
163 | require("gitsigns").setup { | 162 | require("gitsigns").setup { |