Skip to content

Instantly share code, notes, and snippets.

@h1romas4
Last active December 18, 2018 09:59
Show Gist options
  • Save h1romas4/7e372e9669bb26a688e859802175bdd6 to your computer and use it in GitHub Desktop.
Save h1romas4/7e372e9669bb26a688e859802175bdd6 to your computer and use it in GitHub Desktop.
Powerline と Alacritty と tmux の .bashrc
# Powerline
if [ -f /usr/share/powerline/bindings/bash/powerline.sh ]; then
source /usr/share/powerline/bindings/bash/powerline.sh
fi
# macOS の場合は LANG を設定しないと Powerline の表示がおかしくなる
LANG=ja_JP.UTF-8
# Alacritty & tmux
if [[ "$TERM_PROGRAM" = "alacritty" && $SHLVL = 1 ]]
then
#[ -z "$TMUX" ] && { tmux attach || exec tmux new-session && exit;}
[ -z "$TMUX" ] && { tmux new-session && exit;}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment