From 6f24347aba73223150b365d8b4b453a068f9e995 Mon Sep 17 00:00:00 2001 From: Tobias Manske Date: Thu, 8 Apr 2021 05:38:33 +0200 Subject: [PATCH] [VIM] enable true color --- vim/.vimrc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/vim/.vimrc b/vim/.vimrc index a59508f..f96fc70 100755 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -45,6 +45,14 @@ set splitbelow set splitright " Set colors +if (has("nvim")) + "For Neovim 0.1.3 and 0.1.4 < https://github.com/neovim/neovim/pull/2198 > + let $NVIM_TUI_ENABLE_TRUE_COLOR=1 +endif +if (has("termguicolors")) + set termguicolors +endif + colorscheme happy_hacking " Turn on the Wild menu