run :Format
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user