From 2c8ebf41492f27d20f261682de00d9a1152dcc7c Mon Sep 17 00:00:00 2001 From: Mukund Mauji Date: Wed, 2 Jun 2021 14:36:49 -0400 Subject: [PATCH] Fix example config in vimscript in README --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 82f415e..a039143 100644 --- a/README.md +++ b/README.md @@ -104,14 +104,14 @@ require('solarized').set() ```vim " Example config in Vim-Script -let g:solarized_italic_comments = true -let g:solarized_italic_keywords = true -let g:solarized_italic_functions = true -let g:solarized_italic_variables = false -let g:solarized_contrast = true -let g:solarized_borders = false -let g:solarized_disable_background = false +let g:solarized_italic_comments = v:true +let g:solarized_italic_keywords = v:true +let g:solarized_italic_functions = v:true +let g:solarized_italic_variables = v:false +let g:solarized_contrast = v:true +let g:solarized_borders = v:false +let g:solarized_disable_background = v:false --- Load the colorsheme +" Load the colorsheme colorscheme solarized ```