From 606032a045bda410a76022979554786327a309ac Mon Sep 17 00:00:00 2001 From: Kien Nguyen Date: Fri, 13 Jan 2023 10:08:54 +0700 Subject: [PATCH] Change character --- nvim/lua/core/options.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nvim/lua/core/options.lua b/nvim/lua/core/options.lua index 8061837..8fcf62e 100644 --- a/nvim/lua/core/options.lua +++ b/nvim/lua/core/options.lua @@ -49,8 +49,9 @@ opt.cursorline = true -- highlight the current line opt.laststatus = 2 -- only the last window will always have a status line opt.lazyredraw = true -- don't update the display while executing macros opt.list = true +-- You can also add 'space' or 'eol', but I feel it's quite annoying opt.listchars = { - tab = '| ', + tab = '┊ ', trail = '·', extends = '»', precedes = '«',