summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/autocommands.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-06 21:41:31 -0400
committertriethyl <triethylammonium@pm.me>2025-08-06 21:41:43 -0400
commitbf773a2df0ccb96d7539b379585e1ef59d80892c (patch)
tree2b1df74a3b6d9a653d05581bc82e8fc9130272a3 /pkgs/custom-neovim/config/lua/autocommands.lua
parent273c72e9badeab381cc601c7e0aae2eebc016996 (diff)
neovim: small misc changes
Diffstat (limited to 'pkgs/custom-neovim/config/lua/autocommands.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/autocommands.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/custom-neovim/config/lua/autocommands.lua b/pkgs/custom-neovim/config/lua/autocommands.lua
index 1c2b3ae..a09c5dd 100644
--- a/pkgs/custom-neovim/config/lua/autocommands.lua
+++ b/pkgs/custom-neovim/config/lua/autocommands.lua
@@ -6,3 +6,10 @@
-- vim.cmd "startinsert!"
-- end,
-- })
+
+-- Equalize Splits when resized
+-- vim.api.nvim_create_autocmd({"VimResized", "WinEnter"}, {
+-- callback = function()
+-- vim.cmd.wincmd("=")
+-- end,
+-- })