diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-02-20 20:21:41 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:27 +0100 |
commit | 8914ceb359209e452ab719e8437085c7dc0b6dc9 (patch) | |
tree | d29839c583a9036c30d74d00e02f0d59495e9612 /vimrc | |
parent | 9b4adf4abcdb4ee2e8de8ed3add019b7cd863a16 (diff) | |
download | dotnvim-8914ceb359209e452ab719e8437085c7dc0b6dc9.tar.gz dotnvim-8914ceb359209e452ab719e8437085c7dc0b6dc9.zip |
Fixed terminal colours
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -88,14 +88,10 @@ call pathogen#infect() call pathogen#helptags() " looks nice; apparently needs to go after pathogen +set termguicolors set background=dark -let base16colorspace=256 " Access colors present in 256 colorspace -if has('gui_running') - colorscheme base16-monokai -else - colorscheme torte - set nospell -endif +colorscheme base16-monokai +set nospell " default is too slow set updatetime=200 |