1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00

nvim/lua/user/options.lua: update listchars

This commit is contained in:
Henrik Hautakoski 2025-10-16 18:50:40 +02:00
parent 0f73db8246
commit 32f5082360

View file

@ -76,7 +76,7 @@ vim.o.foldcolumn = "auto"
-- See `:help 'list'`
-- and `:help 'listchars'`
vim.o.list = false
vim.o.listchars = [[tab: 󰄾,space:·,eol:␍,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)