From 6efc54a7549a1e7375bfad35ea3ef01f404996d4 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Wed, 26 Jan 2022 14:28:33 -0800 Subject: [PATCH] Comment nvim term colors stuff --- neovim/lua/_settings.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/neovim/lua/_settings.lua b/neovim/lua/_settings.lua index 4873f17..14ce9b8 100644 --- a/neovim/lua/_settings.lua +++ b/neovim/lua/_settings.lua @@ -8,11 +8,14 @@ o.backup = true -- Set leader to space g.mapleader = " " +-- Get terminal colors and unicode working, hopefully vim.cmd([[ let &t_8f = "\[38;2;%lu;%lu;%lum" let &t_8b = "\[48;2;%lu;%lu;%lum" ]]) o.termguicolors = true +-- o.term = "xterm-256color" + o.number = true o.expandtab = true o.tabstop = 4 @@ -21,7 +24,6 @@ o.shiftwidth = 4 o.virtualedit = "onemore" o.scrolljump = 5 o.scrolloff = 3 --- o.term = "xterm-256color" -- o.backspace = "2" -- o.mousehide = true