From 5974e6d0f51129a0b8c03f1863d88969182b997c Mon Sep 17 00:00:00 2001 From: Pavel Pertsev Date: Mon, 2 Feb 2015 01:45:15 +0300 Subject: [PATCH] Updated Terminal specific (markdown) --- Terminal-specific.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Terminal-specific.md b/Terminal-specific.md index 7a6049c..7ca6bd8 100644 --- a/Terminal-specific.md +++ b/Terminal-specific.md @@ -22,13 +22,13 @@ There are three possible ways to get right colors at the terminal: ##### a. (Recommended) 256-color gruvbox palette shellscript Gruvbox contains shellscript ([default](https://github.com/morhetz/gruvbox/blob/master/gruvbox_256palette.sh) and [osx-iterm2](https://github.com/morhetz/gruvbox/blob/master/gruvbox_256palette_osx.sh) versions), which would overload system default 256-color palette with precise gruvbox colors. Try running terminal vim before and after executing this script to feel the difference. To avoid the necessity of reexecuting it each time you're opening terminal, you should start this script from .bashrc//.zshrc//.profile either like this: ``` -~/.vim/bundle/gruvbox/gruvbox_256palette.sh +source "$HOME/.vim/bundle/gruvbox/gruvbox_256palette.sh" ``` or, using osx-iterm version: ``` -~/.vim/bundle/gruvbox/gruvbox_256palette_osx.sh +source "$HOME/.vim/bundle/gruvbox/gruvbox_256palette_osx.sh" ``` -where `~/.vim/bundle/` is your preferred plugin manager bundles installation path +where `$HOME/.vim/bundle/` is your preferred plugin manager bundles installation path **Edit**: Doesn't work at Konsole, see [issue #35](https://github.com/morhetz/gruvbox/issues/35).