nvim: show invisible spaces/tabs

This commit is contained in:
dogeystamp 2024-07-27 15:21:42 -04:00
parent 5b7adccb12
commit 93c2025d78
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,8 @@
set tabstop=4 shiftwidth=4 noexpandtab ai nosmd ignorecase smartcase
" visible whitespace
set list listchars=tab:»\ ,trail:•,leadmultispace:\│\ \ \ ,extends:⇥,precedes:⇤
" Time neovim saves to swapfile in
" Also time neovim recognizes cursor inactivity
set updatetime=800

View File

@ -57,6 +57,8 @@ Group.link("@type.qualifier", groups["keyword.return"])
Group.new("NormalFloat", colors.noir_1, colors.noir_9, nil)
Group.new("NonText", colors.noir_9, nil, nil)
-- swap undercurls and underlines
for _, v in ipairs({ "Error", "Info", "Hint", "Warn" }) do
local col_name = "diagnostic_" .. string.lower(v)