1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim/lua/user/plugins/editor.lua: fix cursorline for status colum

This commit is contained in:
Henrik Hautakoski 2024-12-16 23:41:55 +01:00
parent cdfafa96d6
commit cc7b66feed
3 changed files with 232 additions and 96 deletions

View file

@ -74,8 +74,7 @@ vim.o.foldcolumn = "auto"
-- See `:help 'list'`
-- and `:help 'listchars'`
vim.o.list = false
vim.o.listchars = string.format([[tab: %s,space:%s,eol:%s,nbsp:%s]],
icons.whitespace.tab, icons.whitespace.space, icons.whitespace.eol, icons.whitespace.nbsp)
vim.o.listchars = [[tab: 󰄾,space:·,eol:␍,nbsp:␣]]
vim.o.fillchars = string.format([[eob: ,fold: ,foldopen:%s,foldsep:%s,foldclose:%s]],
icons.fold.open, icons.fold.sep, icons.fold.close)