From fbe51f22eff38b1f994c4d3758c52b6c9863ede3 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Mon, 6 Dec 2021 13:53:03 +0100 Subject: [PATCH] Show tabs properly --- home/.config/nvim/lua/options.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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