From 4c4d58f18ae14e2c76263caba6a9d59d16d33a0d Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Tue, 11 Jul 2023 14:49:36 -0700 Subject: [PATCH] remove termguicolors to fix coloring in tmux --- lua/conf/ui.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/conf/ui.lua b/lua/conf/ui.lua index 6a2ad81..94dc996 100644 --- a/lua/conf/ui.lua +++ b/lua/conf/ui.lua @@ -3,7 +3,8 @@ vim.cmd [[colorscheme nord]] -- Helps some themes. -vim.opt.termguicolors = true +-- This is currently commented out because it messes up tmux. +-- vim.opt.termguicolors = true -- Always show hidden files in nerdtree vim.g.NERDTreeShowHidden = 1