Skip to content

Commit bd455bc

Browse files
committed
fix(options): Don't equalize splits on open
1 parent addfcc4 commit bd455bc

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

plugin/keymaps/normal.lua

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ k("];", "<c-i>", { desc = "Newer cursor position" }) -- `:h ctrl-i`
2727

2828
-- Jump to mark `:h map-backtick`
2929
k("'", "`", { desc = "Jump to mark position" })
30-
31-
-- Start/stop recording a macro
32-
k("Q", "q", { desc = "Start recording macro" })
33-
3430
-- }}}
3531

3632
-- Editing {{{
@@ -70,6 +66,8 @@ end, { expr = true })
7066
k("cn", "*``cgn", { desc = "Change word (forward)" }) -- `:h gn`
7167
k("cN", "*``cgN", { desc = "Change word (backward)" }) -- `:h gN`
7268

69+
-- Start/stop recording a macro
70+
k("Q", "q", { desc = "Start recording macro" })
7371
-- }}}
7472

7573
-- Search {{{

plugin/options.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ o.termguicolors = true -- Enable true colours.
4646
-- }}}
4747

4848
-- 6 multiple windows {{{
49+
o.equalalways = false -- Do not resize windows when opening a new one.
4950
o.laststatus = 3 -- Always show global statusline.
5051
o.splitbelow = true -- Open a new horizontal split below.
5152
o.splitright = true -- Open a new vertical split to the right.

0 commit comments

Comments
 (0)