From ed928443201bcb48329564010aa3621414f18d7a Mon Sep 17 00:00:00 2001 From: Pavel Pertsev Date: Tue, 8 Apr 2014 14:20:27 -0700 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 cdb43e8..ce1e383 100644 --- a/Terminal-specific.md +++ b/Terminal-specific.md @@ -5,14 +5,14 @@ First of all you should check this screenshot, as how it **shouldn't** look: ### Issues #### 1. Italics gets inverted -Most terminals doesn't handle italics so the text, that must be italicized, instead goes inverted. To prevent that disable `g:gruvbox_italic` option at your .vimrc: +Most terminals doesn't handle italics so the text, that must be italicized, goes inverted instead. To prevent that disable `g:gruvbox_italic` option at your .vimrc: ``` if !has("gui_running") let g:gruvbox_italic=0 endif ``` #### 2. Colors are off -By default gruvbox will act as usual 256-color theme, but colors wouldn't be that vivid due to limitations of 256-palette. Compare the **wrong** screenshot above with README preview or any from the [Gallery](https://github.com/morhetz/gruvbox/wiki/Gallery). The difference isn't edgy, but pretty visible enough (changes in red color and shades of gray should be most noticeable). You could run side by side vim in terminal and GUI version. +By default gruvbox will act as usual 256-color theme, but colors wouldn't be that vivid due to limitations of 256-palette. Compare the **wrong** screenshot above with README preview or any from the [Gallery](https://github.com/morhetz/gruvbox/wiki/Gallery). The difference isn't edgy, but pretty visible enough (changes in red color and shades of gray should be most noticeable). You could run vim in terminal and GUI version side by side. There are three possible ways to get right colors at the terminal: - using 256-color gruvbox palette shellscript @@ -20,7 +20,7 @@ There are three possible ways to get right colors at the terminal: - using urxvt-256-xresources ##### 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 check 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: +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 ```