1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-03 18:59:26 +00:00

[neovim] Add ufo/statuscol

This commit is contained in:
2023-07-03 19:16:19 +02:00
parent a5f849c30e
commit 3f298771a5
5 changed files with 48 additions and 2 deletions

View File

@ -36,7 +36,6 @@ vim.opt.wrap = false -- display lines as one long line
vim.opt.scrolloff = 8
vim.opt.sidescrolloff = 8
vim.opt.guifont = "monospace:h10" -- the font used in graphical neovim applications
vim.opt.fillchars.eob = " "
vim.opt.shortmess:append("c")
vim.opt.whichwrap:append("<,>,[,],h,l")
vim.opt.iskeyword:append("-")
@ -44,5 +43,11 @@ vim.opt.formatoptions:remove({ "c", "r", "o" })
vim.opt.linebreak = true
vim.opt.numberwidth = 1
vim.opt.foldenable = true
vim.opt.foldlevel = 99
vim.opt.foldlevelstart = 99
vim.opt.foldcolumn = "1"
vim.opt.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:,diff: ]]
-- experimental
vim.opt.cmdheight = 0 -- Number of screen lines to use for the command-line