Created
October 28, 2019 23:21
-
-
Save dbonates/a34626e7dd91f7ea1c805b02a6e5d57b to your computer and use it in GitHub Desktop.
changes on tmux and vim configs to support true color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # file: .tmux.conf | |
| set -g default-terminal "tmux-256color" | |
| set -ga terminal-overrides ",*256col*:Tc" | |
| # file: .vimrc | |
| if exists('+termguicolors') | |
| let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum" | |
| let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum" | |
| set termguicolors | |
| endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment