From ff1cdd54bc67063fcd5a3893d7aee9a72fb59499 Mon Sep 17 00:00:00 2001 From: Reed Esau Date: Fri, 3 Jan 2014 03:13:26 -0700 Subject: [PATCH] removed second example of defaults dict --- README.markdown | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README.markdown b/README.markdown index e5a8824..0f2223a 100644 --- a/README.markdown +++ b/README.markdown @@ -101,30 +101,25 @@ can `set guifont=` in your .gvimrc independent of thematic. GUI-based Vim users have additional options available in theming. For example, -```vim -let g:thematic#defaults = { -...other defaults... -\ 'typeface': 'Menlo', -\ 'font-size': 20, -\ 'linespace': 8, -\ 'transparency': 0, -\ } -``` - ```vim let g:thematic#themes = { -\ 'bubblegum' : { +\ 'bubblegum' : { 'typeface': 'Menlo', +\ 'font-size': 18, +\ 'linespace': 2, \ }, \ 'solar_dark' : { 'colorscheme': 'solarized', \ 'typeface': 'Source Code Pro Light', +\ 'font-size': 20, \ 'linespace': 8, \ }, \ 'solar_lite' : { 'colorscheme': 'solarized', \ 'typeface': 'Source Code Pro', +\ 'font-size': 20, \ 'linespace': 6, \ }, \ 'iawriter' : { 'colorscheme': 'reede_light', \ 'columns': 75, +\ 'typeface': 'Menlo', \ 'font-size': 22, \ 'fullscreen': 1, \ },