aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2018-11-17 00:33:59 -0500
committerMitch Riedstra <mitch@riedstra.us>2018-11-17 00:33:59 -0500
commit83fce62a0b560a9cff4aa75fdabc601d7280d1f2 (patch)
tree30e053a709e98f4c5076cb4a6dcf5843c319f7dc
parent4a17da460143359f29ec1f6c5bb6812d82759cda (diff)
downloadvim-cfg-83fce62a0b560a9cff4aa75fdabc601d7280d1f2.tar.gz
vim-cfg-83fce62a0b560a9cff4aa75fdabc601d7280d1f2.tar.xz
Add gruvbox and some more docs to my init.vim. Remove true color in terminals by default
-rw-r--r--init.vim14
-rwxr-xr-xsetup.sh3
2 files changed, 13 insertions, 4 deletions
diff --git a/init.vim b/init.vim
index d07b9e1..3492f79 100644
--- a/init.vim
+++ b/init.vim
@@ -26,14 +26,20 @@ set omnifunc=syntaxcomplete#Complete
let g:netrw_liststyle=3
set nonu
-set termguicolors
+" Useful on some terminals, not always supported in old tmux versions
+" set termguicolors
set background=dark
syntax off
let g:airline_theme="monochrome"
-" colorscheme distinguished
-" colorscheme solarized
" set background=light
" set background=dark
+
+" colorscheme distinguished
+" colorscheme solarized
" colorscheme dracula
-"colorscheme orbital
+" colorscheme orbital
+
+" has a light/dark mode that's very interesting
+" Seems to work best when you have 'termguicolors' set
+" colorscheme gruvbox
diff --git a/setup.sh b/setup.sh
index 919e777..89764f6 100755
--- a/setup.sh
+++ b/setup.sh
@@ -53,3 +53,6 @@ clone
DIR="themes/dracula"
URL="https://github.com/dracula/vim.git"
clone
+DIR="themes/gruvbox"
+URL="https://github.com/morhetz/gruvbox"
+clone