Merge pull request #2 from maujim/master

Fix example config in vimscript in README
This commit is contained in:
shaunsingh
2021-06-02 14:39:44 -04:00
committed by GitHub

View File

@@ -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
```