diff options
| author | triethyl <triethylammonium@pm.me> | 2025-07-15 14:47:28 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-07-15 14:47:28 -0400 |
| commit | 4675a023e85fb0c188cbf1916decff43ab95a692 (patch) | |
| tree | 99aa8660983fea68d4f3c39571bb2d9d7b003411 /pkgs/custom-neovim/config/lua/neovide.lua | |
| parent | e44a859b819c000ed43f03bcdf93ba9dd0e34640 (diff) | |
working on custom neovim
Diffstat (limited to 'pkgs/custom-neovim/config/lua/neovide.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/neovide.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/custom-neovim/config/lua/neovide.lua b/pkgs/custom-neovim/config/lua/neovide.lua index dc804fc..d088413 100644 --- a/pkgs/custom-neovim/config/lua/neovide.lua +++ b/pkgs/custom-neovim/config/lua/neovide.lua @@ -8,10 +8,10 @@ if vim.g.neovide then vim.g.neovide_scale_factor = vim.g.neovide_scale_factor + delta end vim.keymap.set("n", "<C-=>", function() - change_scale_factor(1) + change_scale_factor(0.05) end) vim.keymap.set("n", "<C-->", function() - change_scale_factor(-1) + change_scale_factor(-0.05) end) -- Standard terminal emulator keymaps. |
