From bf773a2df0ccb96d7539b379585e1ef59d80892c Mon Sep 17 00:00:00 2001 From: triethyl Date: Wed, 6 Aug 2025 21:41:31 -0400 Subject: neovim: small misc changes --- pkgs/custom-neovim/config/lua/autocommands.lua | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'pkgs/custom-neovim/config/lua/autocommands.lua') 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, +-- }) -- cgit v1.2.3