Last active
December 18, 2018 09:59
-
-
Save h1romas4/7e372e9669bb26a688e859802175bdd6 to your computer and use it in GitHub Desktop.
Powerline と Alacritty と tmux の .bashrc
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
# 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