From e877fe752267f2a44275f7e2aa43df0ab19339b6 Mon Sep 17 00:00:00 2001 From: Kaiz Khatri <24286590+ful1e5@users.noreply.github.com> Date: Thu, 21 Oct 2021 16:02:23 +0530 Subject: [PATCH] docs: override colors inside vim config example (#104) --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 985a4ec..4ba4731 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,12 @@ let g:tokyonight_style = "night" let g:tokyonight_italic_functions = 1 let g:tokyonight_sidebars = [ "qf", "vista_kind", "terminal", "packer" ] +" Change the "hint" color to the "orange" color, and make the "error" color bright red +let g:tokyonight_colors = { + \ 'hint': 'orange', + \ 'error': '#ff0000' +\ } + " Load the colorscheme colorscheme tokyonight ```