Disable automatic window resizing.

main
Joshua Potter 2023-11-23 07:45:43 -07:00
parent 12ff0c21d6
commit d0cf9f8722
1 changed files with 5 additions and 4 deletions

View File

@ -115,6 +115,7 @@ in
vim.g.mapleader = ' '
vim.g.maplocalleader = '\\'
vim.o.colorcolumn = '80,100'
vim.o.equalalways = false -- Disable auto window resize.
vim.o.expandtab = true -- Spaces instead of tabs.
vim.o.list = true -- Show hidden characters.
vim.o.shiftwidth = 2 -- # of spaces to use for each (auto)indent.