Skip to content

Commit 2c8ebf4

Browse files
authored
Fix example config in vimscript in README
1 parent 7411bc7 commit 2c8ebf4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ require('solarized').set()
104104

105105
```vim
106106
" Example config in Vim-Script
107-
let g:solarized_italic_comments = true
108-
let g:solarized_italic_keywords = true
109-
let g:solarized_italic_functions = true
110-
let g:solarized_italic_variables = false
111-
let g:solarized_contrast = true
112-
let g:solarized_borders = false
113-
let g:solarized_disable_background = false
114-
115-
-- Load the colorsheme
107+
let g:solarized_italic_comments = v:true
108+
let g:solarized_italic_keywords = v:true
109+
let g:solarized_italic_functions = v:true
110+
let g:solarized_italic_variables = v:false
111+
let g:solarized_contrast = v:true
112+
let g:solarized_borders = v:false
113+
let g:solarized_disable_background = v:false
114+
115+
" Load the colorsheme
116116
colorscheme solarized
117117
```

0 commit comments

Comments
 (0)