9 lines
197 B
Lua
9 lines
197 B
Lua
local autocmd = vim.api.nvim_create_autocmd
|
|
|
|
-- Auto resize panes when resizing nvim window
|
|
autocmd("VimResized", {
|
|
pattern = "*",
|
|
command = "tabdo wincmd =",
|
|
})
|
|
|
|
vim.opt.relativenumber = true
|