diff options
author | listout <listout@protonmail.com> | 2022-10-27 12:30:15 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-10-27 12:30:15 +0530 |
commit | 918470fac61c6b9d98138fb8ae8e400bcf37269f (patch) | |
tree | c396d832cbebeabda5fd76c1a84cdbc3e030b857 /lua | |
parent | cc66e046023d4de59d03e7cef6a2552ad26d334a (diff) |
nvim: appearance.lua: set termguicolors to true
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'lua')
-rw-r--r-- | lua/core/appearance.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/core/appearance.lua b/lua/core/appearance.lua index a1ff443..452c4b9 100644 --- a/lua/core/appearance.lua +++ b/lua/core/appearance.lua @@ -12,7 +12,7 @@ opt.splitbelow = true -- Horizontal split to the bottom opt.ignorecase = true -- Ignore case letters when search opt.smartcase = true -- Ignore lowercase for the whole pattern opt.linebreak = true -- Wrap on word boundary -opt.termguicolors = false -- Enable 24-bit RGB colors +opt.termguicolors = true -- Enable 24-bit RGB colors opt.laststatus = 2 -- Set global statusline opt.splitbelow = true opt.splitright = true |