diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-15 13:50:20 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-15 13:50:20 -0400 |
| commit | 94980b0be13a690128992d98a2ed5db3ab592642 (patch) | |
| tree | 4d745b825612dcf0683f72e4ab2a800e805524aa /pkgs/custom-neovim | |
| parent | 120981440c01e71c2f07eff2550e890435381437 (diff) | |
neovim: fixed performance
I don't know what it did but this seems to have fixed performance
issues?
Diffstat (limited to 'pkgs/custom-neovim')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/options.lua | 2 | ||||
| -rw-r--r-- | pkgs/custom-neovim/default.nix | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/custom-neovim/config/lua/options.lua b/pkgs/custom-neovim/config/lua/options.lua index 2e273cc..20f3e01 100644 --- a/pkgs/custom-neovim/config/lua/options.lua +++ b/pkgs/custom-neovim/config/lua/options.lua @@ -13,7 +13,7 @@ vim.o.scrolloff = 4 -- minimal number of screen lines to keep above and below th vim.o.signcolumn = "yes" -- always show the sign column, otherwise it would shift the text each time vim.o.clipboard = "unnamedplus" -- use system clipboard -- vim.o.equalalways = true -- equalize splits -vim.o.sessionoptions = "blank,curdir,folds,help,tabpages,winsize,winpos,terminal,globals,buffers" -- define what is saved with the session. +vim.o.sessionoptions = "blank,curdir,folds,help,tabpages,winsize,winpos,terminal,globals,buffers,localoptions" -- define what is saved with the session. -- Split Behavior vim.o.splitright = true diff --git a/pkgs/custom-neovim/default.nix b/pkgs/custom-neovim/default.nix index 479e952..7a75368 100644 --- a/pkgs/custom-neovim/default.nix +++ b/pkgs/custom-neovim/default.nix @@ -74,6 +74,8 @@ in fd cliphist lazygit + luajitPackages.jsregexp + gcc # Temporary wakatime-cli |
