diff --git a/nvim/dot-config/nvim/lua/options.lua b/nvim/dot-config/nvim/lua/options.lua index 9835ced..6d82537 100644 --- a/nvim/dot-config/nvim/lua/options.lua +++ b/nvim/dot-config/nvim/lua/options.lua @@ -57,3 +57,7 @@ vim.o.showmode = false -- Minimum number of screen lines above and below the cursor vim.o.scrolloff = 10 + +-- Highlight tabs and trailing whitespace +vim.o.listchars = "trail:~,tab:¦⁃,nbsp:␣" +vim.o.list = true