diff options
author | Juan J. Martinez <jjm@usebox.net> | 2018-03-16 09:13:58 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:27 +0100 |
commit | 5123be622586cce3ab335c62018b832381a2e1d0 (patch) | |
tree | 50cc0db6b4dc58938ed12e5487274001d5673efa /vimrc | |
parent | 87bb5f63401224430951a36e8a8d5a475709b26d (diff) | |
download | dotnvim-5123be622586cce3ab335c62018b832381a2e1d0.tar.gz dotnvim-5123be622586cce3ab335c62018b832381a2e1d0.zip |
Use a different color scheme if no gui
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -68,6 +68,11 @@ call pathogen#infect() " looks nice; apparently needs to go after pathogen set background=dark -colorscheme base16-google-dark +if has('gui_running') + colorscheme base16-google-dark +else + colorscheme torte + set nospell +endif let base16colorspace=256 " Access colors present in 256 colorspace |