From 32f50823604dc6245c43d86946d776fd1816c914 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 16 Oct 2025 18:50:40 +0200 Subject: [PATCH] nvim/lua/user/options.lua: update listchars --- nvim/lua/user/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/lua/user/options.lua b/nvim/lua/user/options.lua index a2009fc..e97dc4a 100644 --- a/nvim/lua/user/options.lua +++ b/nvim/lua/user/options.lua @@ -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)