Options were disable already, they are mostly defined in my vimrc
still... I should probably port my config now that I have committed to
NeoVim.
+opt.fillchars = {
+ foldopen = "",
+ foldclose = "",
+ fold = " ",
+ foldsep = " ",
+ eob = " ",
+ diff = "⣿",
+ vert = "│",
+}
+
vim.g.man_hardwrap = 1
vim.env.MANWIDTH = 80
vim.g.man_hardwrap = 1
vim.env.MANWIDTH = 80
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
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()"
opt.foldmethod = "expr"
opt.foldexpr = "v:lua.require'rmz.util'.foldexpr()"