diff --git a/home/.config/nvim/lua/vim_opt.lua b/home/.config/nvim/lua/vim_opt.lua index 986e14a..b29cd93 100644 --- a/home/.config/nvim/lua/vim_opt.lua +++ b/home/.config/nvim/lua/vim_opt.lua @@ -65,4 +65,8 @@ opt.termsync = true -- Sets a minimum number of lines to keep above and below the cursor opt.scrolloff = 4 +-- Whitespaces +opt.listchars = { tab = "→\"", trail = "·", nbsp = "␣" } +opt.list = true + return opt