diff options
author | Louie S <louie@example.com> | 2024-06-27 16:19:11 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-06-27 16:19:11 -0400 |
commit | d1e97fdc3478e694db7aec40817b10e3e12671e8 (patch) | |
tree | f3e1471b73ace33d0843b23ae4127b5bd4ba792d /lua | |
parent | 42c5c325b809fd3fc819a19cd79780135884aac5 (diff) |
Turn off gui colors by default
Diffstat (limited to 'lua')
-rw-r--r-- | lua/user/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 |