X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/b23eb3955580e2de13c03bf59169ccd2b2009d33..c1ad91c394da11dffa6fdb75f350b33a13d60f16:/nvim/lua/config/options.lua diff --git a/nvim/lua/config/options.lua b/nvim/lua/config/options.lua index 3939dbc..aeaca61 100644 --- a/nvim/lua/config/options.lua +++ b/nvim/lua/config/options.lua @@ -2,9 +2,21 @@ local opt = vim.opt +opt.fillchars = { + foldopen = "", + foldclose = "", + fold = " ", + foldsep = " ", + eob = " ", + diff = "⣿", + vert = "│", +} + vim.g.man_hardwrap = 1 vim.env.MANWIDTH = 80 +vim.diagnostic.config({ virtual_text = false }) + -- TODO: also try noinsert opt.completeopt = "menu,menuone,noselect" @@ -14,9 +26,10 @@ opt.pumheight = 10 -- Maximum number of entries in a popup opt.showmode = false -- Dont show mode since we have a statusline opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time opt.updatetime = 200 -- Save swap file and trigger CursorHold -if vim.fn.has("nvim-0.9.0") == 1 then - opt.splitkeep = "screen" - opt.shortmess:append({ C = true }) -end +opt.splitkeep = "screen" +opt.shortmess:append({ C = true }) +opt.foldmethod = "expr" +opt.foldexpr = "v:lua.require'rmz.util'.foldexpr()" + -- do not let markdown plugin change indent vim.g.markdown_recommended_style = 0