From d1e97fdc3478e694db7aec40817b10e3e12671e8 Mon Sep 17 00:00:00 2001 From: Louie S Date: Thu, 27 Jun 2024 16:19:11 -0400 Subject: Turn off gui colors by default --- lua/user/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/user/options.lua b/lua/user/options.lua index d1ffe51..5c12621 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -22,4 +22,4 @@ vim.opt.shortmess:append "c" -- for autocompletion, don't giv vim.opt.conceallevel = 0 -- do not conceal text vim.opt.fileencoding = "utf-8" -- the encoding written to a file --vim.opt.pumheight = 10 -- pop up menu height ---vim.opt.termguicolors = true -- set term gui colors (most terminals support this) +vim.opt.termguicolors = false -- gui colors off by default -- cgit