1 -- Options are automatically loaded before lazy.nvim startup
8 vim.diagnostic.config({ virtual_text = false })
10 -- TODO: also try noinsert
11 opt.completeopt = "menu,menuone,noselect"
13 -- Some settings taken from LazyVim's default options
14 opt.pumblend = 10 -- Popup blend
15 opt.pumheight = 10 -- Maximum number of entries in a popup
16 opt.showmode = false -- Dont show mode since we have a statusline
17 opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time
18 opt.updatetime = 200 -- Save swap file and trigger CursorHold
19 if vim.fn.has("nvim-0.9.0") == 1 then
20 opt.splitkeep = "screen"
21 opt.shortmess:append({ C = true })
23 -- do not let markdown plugin change indent
24 vim.g.markdown_recommended_style = 0