From 0a63bd07813b4ab8ec5f1e4dd94092b79ce367c4 Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Fri, 26 Feb 2021 13:59:19 -0500 Subject: [PATCH] Color terminal output in GUI Vim --- vim/vimrc.d/gui.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vim/vimrc.d/gui.vim b/vim/vimrc.d/gui.vim index 97a99d6..5c52a48 100644 --- a/vim/vimrc.d/gui.vim +++ b/vim/vimrc.d/gui.vim @@ -4,4 +4,7 @@ if has("gui_running") || has("gui_vimr") set guioptions-=r set guioptions-=L set guioptions-=l + + " Color terminal output + set guioptions+=! endif