Dotfiles from time before I knew the word dotfiles, but the name has stuck.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
- # Intended for systems with ncurses < 6 which is missing TERMINFO
- # for tmux-256color.
- if [[ $TERM == 'tmux-256color' ]]; then
- export TERM=screen-256color
- fi
|