aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Kempson <chriskempson@users.noreply.github.com>2016-07-19 19:06:51 +0100
committerGitHub <noreply@github.com>2016-07-19 19:06:51 +0100
commit7d4da142a2155f1a60efebb86a8b47068f0500d2 (patch)
tree5deeb567dfe53e2a44907387c5ac975b4f38027f
parent6e46bccea5b24a5e862bc4ef183592b3a0e4da71 (diff)
parentf7874b1753e8b7b829cf27f6f654a4484c58bd75 (diff)
Merge pull request #103 from DLWood1001/master
Background variable in base16-vim
-rw-r--r--README.md3
-rw-r--r--templates/default.mustache2
2 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 69fdb85..097a647 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,6 @@ For terminal Vim (non-gui) please ensure you are using a base16 terminal theme.
* [iTerm2](https://github.com/chriskempson/base16-iterm2)
## Installation
-To use the dark theme ensure `set background=dark` is present in your `~/.vimrc` file. Otherwise Vim will use the light variation by default.
Add `colorscheme base16-default-dark` to your `~/.vimrc`.
@@ -50,4 +49,4 @@ If your Vim looks like the above image you are using a 256 terminal theme withou
### Blue line numbers
![blue line numbers screenshot](https://raw.github.com/chriskempson/base16-vim/master/with-base16colorspace-256-without-base16-shell.png)
-If your Vim looks like the above image you are setting `let base16colorspace=256` in your `~/.vimrc` but either not running [Base16 Shell](https://github.com/chriskempson/base16-shell) or [Base16 Shell](https://github.com/chriskempson/base16-shell) is not working for your terminal. Either ensure [Base16 Shell](https://github.com/chriskempson/base16-shell) is working by running the `colortest` available in the [Base16 Shell](https://github.com/chriskempson/base16-shell) repository or not setting `let base16colorspace=256` in your `~/.vimrc`.
+If your Vim looks like the above image you are setting `let base16colorspace=256` in your `~/.vimrc` but either not running [Base16 Shell](https://github.com/chriskempson/base16-shell) or [Base16 Shell](https://github.com/chriskempson/base16-shell) is not working for your terminal. Either ensure [Base16 Shell](https://github.com/chriskempson/base16-shell) is working by running the `colortest` available in the [Base16 Shell](https://github.com/chriskempson/base16-shell) repository or not setting `let base16colorspace=256` in your `~/.vimrc`. \ No newline at end of file
diff --git a/templates/default.mustache b/templates/default.mustache
index 80c44a3..cf411c2 100644
--- a/templates/default.mustache
+++ b/templates/default.mustache
@@ -8,7 +8,7 @@
" let g:base16_shell_path=base16-builder/output/shell/
if !has('gui_running')
if exists("g:base16_shell_path")
- execute "silent !/bin/sh ".g:base16_shell_path."/base16-{{scheme-slug}}.".&background.".sh"
+ execute "silent !/bin/sh ".g:base16_shell_path."/base16-{{scheme-slug}}.sh"
endif
endif