Compare commits

..

No commits in common. "074d7abd35f0e1a0c91bfb15092e51efa48905b0" and "b9fce71df9c3f53391f43204b3d6c3c7e1193208" have entirely different histories.

2 changed files with 2 additions and 9 deletions

View File

@ -13,10 +13,10 @@ export EDITOR="nano"
# set `ll` command - b(etter)ls per default
alias ll=bls
if test -x "$(which eza)"; then
if test -f "$homebrew_path/eza"; then
alias ll=eza
fi
if test -x "$(which lsd)"; then
if test -f "$homebrew_path/lsd"; then
alias ll=lsd
fi

7
zshrc
View File

@ -12,13 +12,6 @@ prompt_color2="#000000"
# Load zsh settings
source "$HOME/.dotfiles/zsh/settings"
# Run command when connected via SSH
# via: https://stackoverflow.com/questions/27613209/how-to-automatically-start-tmux-on-ssh-session/40192494#40192494
#
if [[ $- =~ i ]] && [[ -z "$TMUX" ]] && [[ -n "$SSH_TTY" ]]; then
tmux attach-session -t default || tmux new-session -s default
fi
# Define platform
platform='Unknown'
if [[ $(uname) == 'Linux' ]]; then