feat: whitespace/indent markers

This commit is contained in:
2026-01-20 08:09:27 +02:00
parent 4419f2e5f3
commit 1b0b2ad50c
2 changed files with 3 additions and 0 deletions

View File

@@ -37,6 +37,8 @@ vim.opt.cursorline = false
vim.opt.ruler = false
vim.opt.winborder = 'rounded'
vim.opt.guicursor = 'n-v-i-c:block'
vim.opt.list = true
vim.opt.listchars = { leadmultispace = '', tab = '', trail = '·' }
vim.opt.laststatus = 3
vim.opt.statusline = '── %f %h%w%m%r %= [%l,%c-%L] ──'

View File

@@ -4,6 +4,7 @@ function M.load_theme()
highlights = function(c, tool)
c.bg_float = tool(152)
return {
Whitespace = { fg = c.outline_light },
ModeMsg = { fg = c.yellow, bg = c.none, bold = true },
WinSeparator = { fg = c.outline, bg = c.base },
StatusLine = { fg = c.outline, bg = c.base, bold = false },