This commit is contained in:
cjurgell 2025-08-13 14:13:05 -05:00 committed by iofq
parent 58c0637b78
commit 7165161856
10 changed files with 234 additions and 223 deletions

View file

@ -19,7 +19,6 @@ vim.opt.tabstop = 2 -- 2 space tabs are based
vim.opt.updatetime = 250 -- decrease update time
vim.opt.virtualedit = 'onemore'
vim.opt.winborder = 'rounded'
vim.cmd('colorscheme iofq')
-- Configure Neovim diagnostic messages
vim.diagnostic.config {
@ -32,5 +31,7 @@ vim.diagnostic.config {
source = 'if_many',
},
}
require('config.keymaps')
require('config.autocmd')
vim.schedule(function()
require('config.autocmd')
require('config.keymaps')
end)