Revert "nvim: Fix accessing t_Co"

This reverts commit 72e3b80274.
This commit is contained in:
Sanchayan Maity 2021-06-13 15:30:02 +05:30
parent ba3c62722b
commit 0eb9b86927
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ local _TYPE_TABLE = 'table'
-- Determine which set of colors to use.
local _USE_HEX = vim.o.termguicolors
local _USE_256 = tonumber(vim.wo.t_Co) > 255
local _USE_256 = tonumber(vim.o.t_Co) > 255
or string.find(vim.env.TERM, '256')
--[[