diff options
author | Chris Kempson <chriskempson@users.noreply.github.com> | 2019-06-07 08:43:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-07 08:43:56 +0100 |
commit | e7287af11a3a575380aba375209f64d389c0719b (patch) | |
tree | d664f979d8fb940031a121de300d18d5f11d1628 /templates/default.mustache | |
parent | 87511fb367b94c31b6c7057278e92c381e8bff52 (diff) | |
parent | 0ac8b6927d0636d0dded8dab6f06dd8af81fa3bc (diff) |
Merge pull request #195 from a-vrma/consistent_quoting
Change all quotes to double quotes.
Diffstat (limited to 'templates/default.mustache')
-rw-r--r-- | templates/default.mustache | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/default.mustache b/templates/default.mustache index a132dd2..e0b612c 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -8,7 +8,7 @@ " :colorscheme works in terminals supported by base16-shell scripts " User must set this variable in .vimrc " let g:base16_shell_path=base16-builder/output/shell/ -if !has('gui_running') +if !has("gui_running") if exists("g:base16_shell_path") execute "silent !/bin/sh ".g:base16_shell_path."/base16-{{scheme-slug}}.sh" endif @@ -69,7 +69,7 @@ let s:cterm0D = "04" let g:base16_cterm0D = "04" let s:cterm0E = "05" let g:base16_cterm0E = "05" -if exists('base16colorspace') && base16colorspace == "256" +if exists("base16colorspace") && base16colorspace == "256" let s:cterm01 = "18" let g:base16_cterm01 = "18" let s:cterm02 = "19" @@ -121,7 +121,7 @@ if has("nvim") let g:terminal_color_background = g:terminal_color_7 let g:terminal_color_foreground = g:terminal_color_2 endif -elseif has('terminal') +elseif has("terminal") let g:terminal_ansi_colors = [ \ "#{{base00-hex}}", \ "#{{base08-hex}}", |