2018-08-09 06:53:47 +00:00
|
|
|
+++
|
|
|
|
title = "fixing tmux colors"
|
|
|
|
date = 2018-04-23
|
|
|
|
|
2019-03-28 00:44:39 +00:00
|
|
|
[taxonomies]
|
|
|
|
tags = ["tmux", "terminal"]
|
2018-08-09 06:53:47 +00:00
|
|
|
+++
|
|
|
|
|
|
|
|
Put this in your `~/.tmux.conf`.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
set -g default-terminal "screen-256color"
|
|
|
|
```
|
|
|
|
|
2019-03-28 00:44:39 +00:00
|
|
|
If this isn't set properly, tmux usually assumes 16-color mode, which displays colors probably not like what you're used to.
|