From 52b3f617fdf4912cd7b31b076719d71467e1ca64 Mon Sep 17 00:00:00 2001 From: Kevin James Lausen Date: Sun, 29 May 2022 11:21:07 -0400 Subject: [PATCH] Enabled Neo-vim terminal coloring. --- 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 10d7496..49f4adb 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -16,7 +16,7 @@ vim.opt.smartindent = true -- make indenting smarter again vim.opt.splitbelow = true -- force all horizontal splits to go below current window vim.opt.splitright = true -- force all vertical splits to go to the right of current window vim.opt.swapfile = false -- creates a swapfile --- vim.opt.termguicolors = true -- set term gui colors (most terminals support this) +vim.opt.termguicolors = true -- set term gui colors (most terminals support this) vim.opt.timeoutlen = 1000 -- time to wait for a mapped sequence to complete (in milliseconds) vim.opt.undofile = true -- enable persistent undo vim.opt.updatetime = 300 -- faster completion (4000ms default)