diff options
author | Robin Kautz <[email protected]> | 2021-07-05 18:02:05 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-05 12:02:05 -0400 |
commit | 1940bd26a6538210f2e03dd657705d532c67a097 (patch) | |
tree | 1446bffe95e130f212a056339e9e5d39ba6ef1ef | |
parent | 246afe05d06fa3d61f46aa40139195c95e7c3da7 (diff) |
evenly resize split windows (#698)
* evenly resize split windows
* fixed indention
-rw-r--r-- | lua/default-config.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua index 661f8f23..01b3ff83 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -288,4 +288,8 @@ require("lv-utils").define_augroups { _buffer_bindings = { { "FileType", "floaterm", "nnoremap <silent> <buffer> q :q<CR>" }, }, + _auto_resize = { + -- will cause split windows to be resized evenly if main window is resized + {'VimResized ', '*', 'wincmd ='}, + }, } |