Show tabs properly

This commit is contained in:
ItsDrike 2021-12-06 13:53:03 +01:00
parent ea9a73f21a
commit fbe51f22ef
No known key found for this signature in database
GPG key ID: FB8CA11A2CF3A843

View file

@ -27,9 +27,9 @@ o.ignorecase = true -- Use case insensitive matching
o.incsearch = true -- Show partial matches while typing o.incsearch = true -- Show partial matches while typing
o.hlsearch = true -- Highlight search matches o.hlsearch = true -- Highlight search matches
-- Show trailing whitespace -- Show whitespace
o.list = true -- Enable showing characters like <Tab>, <EOL>, ... o.list = true -- Enable showing characters like <Tab>, <EOL>, ...
o.listchars = "trail:·" -- Only show trailing whitespaces o.listchars = {tab = "", trail = "·"} -- Specify which characters to show
-- Command-mode search -- Command-mode search
o.wildmode = {"longest", "list", "full"} -- Enable autocompletion o.wildmode = {"longest", "list", "full"} -- Enable autocompletion