diff --git a/home/.config/nvim/lua/options.lua b/home/.config/nvim/lua/options.lua index 8a5dda6..b87195c 100644 --- a/home/.config/nvim/lua/options.lua +++ b/home/.config/nvim/lua/options.lua @@ -27,9 +27,9 @@ o.ignorecase = true -- Use case insensitive matching o.incsearch = true -- Show partial matches while typing o.hlsearch = true -- Highlight search matches --- Show trailing whitespace -o.list = true -- Enable showing characters like , , ... -o.listchars = "trail:·" -- Only show trailing whitespaces +-- Show whitespace +o.list = true -- Enable showing characters like , , ... +o.listchars = {tab = " ", trail = "·"} -- Specify which characters to show -- Command-mode search o.wildmode = {"longest", "list", "full"} -- Enable autocompletion