run :Format

This commit is contained in:
2023-12-25 14:29:10 +01:00
parent 66137fdea3
commit 37f15e1b16
6 changed files with 69 additions and 60 deletions

View File

@ -43,17 +43,17 @@ vim.o.background = "light"
-- general purpose options
local set_true = { 'title', 'relativenumber', 'ruler', 'modeline',
'autoread', 'cursorline', 'cursorcolumn',
'incsearch',
'showcmd', 'showmatch', 'lazyredraw', 'linebreak', 'wrap',
'wildmenu', 'wildignorecase', 'showfulltag', }
'autoread', 'cursorline', 'cursorcolumn',
'incsearch',
'showcmd', 'showmatch', 'lazyredraw', 'linebreak', 'wrap',
'wildmenu', 'wildignorecase', 'showfulltag', }
vim.o.colorcolumn = '+1'
for _,o in ipairs(set_true) do
for _, o in ipairs(set_true) do
vim.o[o] = true
end
-- folds
vim.g.ip_skipfold=true
vim.g.ip_skipfold = true
-- window management
vim.o.tw = 80