Skip to content

Commit

Permalink
fix tmux colors
Browse files Browse the repository at this point in the history
  • Loading branch information
smith committed Jul 23, 2017
1 parent cb08c7d commit 96cbd1c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions etc/config/fish/config.fish
Expand Up @@ -41,14 +41,17 @@ if which dfc > /dev/null; function df; dfc; end; end
# direnv
if which direnv > /dev/null; eval (direnv hook fish); end

# hub
if which hub > /dev/null; function git; hub $argv; end; end

# lisp
if which clj > /dev/null; function lisp; rlwrap clj; end; end

# lolcat
if which lolcat > /dev/null; function cat; lolcat $argv; end; end

# hub
if which hub > /dev/null; function git; hub $argv; end; end
# force tmux to default to 256 colors
if which tmux > /dev/null; function tmux; command tmux -2 $argv; end; end

# Git prompt parameters
set __fish_git_prompt_showdirtystate 'yes'
Expand Down

0 comments on commit 96cbd1c

Please sign in to comment.