From 15ec6fe0df4f96a72d5e032a48d8503a13164c38 Mon Sep 17 00:00:00 2001 From: ralvescosta Date: Sun, 16 Mar 2025 19:56:42 -0300 Subject: [PATCH] feat: disabled opt.list to improve go files --- lua/kickstart/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/kickstart/options.lua b/lua/kickstart/options.lua index 631ad12f..6362ac46 100644 --- a/lua/kickstart/options.lua +++ b/lua/kickstart/options.lua @@ -49,7 +49,7 @@ vim.opt.splitbelow = true -- Sets how neovim will display certain whitespace characters in the editor. -- See `:help 'list'` -- and `:help 'listchars'` -vim.opt.list = true +vim.opt.list = false -- originally this configuration was true vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } -- Preview substitutions live, as you type!