diff options
author | William Carroll <wpcarro@gmail.com> | 2017-01-04T05·02-0500 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2017-01-04T05·02-0500 |
commit | af0fd4bee03c7cec30abdaf9f320f84e487ff640 (patch) | |
tree | b3a7f63dee8fe2d8280e2e90abdf2dbd930f80b2 /README.md | |
parent | ab3f645cb753658123bd1301b65601d2e036c4dd (diff) |
Adds TrueColor information
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/README.md b/README.md index 95bfd70664f3..577d57b51ea4 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,33 @@ $ tic $TERM.ti ``` -## Italics in tmux and vim +## True Color and Italics in tmux and vim + +### TrueColor + +Note: make sure that the terminal you are using supports TrueColor (hint: recent version of iTerm2 do). Also make sure that the tmux version you are using supports TrueColor (hint: versions north of 2.2 should). + +* Terminal: recent versions of iTerm 2 should support TrueColor +* Tmux: versions 2.2 and after should support TrueColor +* NeoVim: recent versions of NeoVim should support TrueColor + +Enable TrueColor in your `~/.vimrc` (already done in this repository): + +```viml +set termguicolors +``` + + +Enable TrueColor in your `~/.tmux.conf` (already done in this repository): + +NOTE: This may conflict with the setting for italics. Need to verify to confirm / disconfirm this (pending). + +``` +set -ga terminal-overrides ",xterm-256color-italic:Tc" +``` + + +### Italics In the file `/configs/.tmux.conf` there is a line to add italics support to tmux: |