This commit is contained in:
Alex Yatskov 2023-04-22 19:37:53 -07:00
parent 856894cf24
commit bd84d8623a
2 changed files with 3 additions and 3 deletions

View File

@ -13,10 +13,10 @@ vim.opt.foldenable = false
vim.opt.guicursor = 'n:blinkon0' vim.opt.guicursor = 'n:blinkon0'
vim.opt.ignorecase = true vim.opt.ignorecase = true
vim.opt.linebreak = true vim.opt.linebreak = true
vim.opt.listchars = "tab:» ,eol:↲,space:·" vim.opt.listchars = 'tab:» ,eol:↲,space:·'
vim.opt.modeline = false vim.opt.modeline = false
vim.opt.modelines = 0 vim.opt.modelines = 0
vim.opt.mousemodel = 'extend' vim.opt.mouse = ''
vim.opt.number = true vim.opt.number = true
vim.opt.shiftround = true vim.opt.shiftround = true
vim.opt.shiftwidth = 4 vim.opt.shiftwidth = 4

View File

@ -9,5 +9,5 @@ elseif vim.fn.has('win32') == 1 then
end end
if font then if font then
vim.cmd.Guifont({args = {font}}) vim.cmd.Guifont({args = {font}, bang = true})
end end