26 lines
754 B
Plaintext
Executable File
26 lines
754 B
Plaintext
Executable File
|
|
|
|
# Solarized (mostly) dark skin for Midnight Commander
|
|
export MC_SKIN=$HOME/.config/mc/skins/solarized.ini
|
|
export EDITOR=vim
|
|
|
|
[[ -d "/opt/homebrew/bin" ]] && cd /opt/homebrew/bin
|
|
|
|
[[ -f "$HOME/.dotfiles/aliases" ]] && source "$HOME/.dotfiles/aliases"
|
|
[[ -f "$HOME/.iterm2_shell_integration.zsh" ]] && source "$HOME/.iterm2_shell_integration.zsh"
|
|
|
|
#if [ ! "$TERM_PROGRAM" = "iTerm.app" ]; then
|
|
# if [ -z "$TMUX" ]; then
|
|
# (tmux ls | grep -vq attached && tmux -2 attach-session -t main) || tmux -2 new-session -s main
|
|
# fi
|
|
#fi
|
|
|
|
# use ~/.commonrc.local for local changes, proxy etc.
|
|
[[ -f "$HOME/.commonrc.local" ]] && source "$HOME/.commonrc.local"
|
|
|
|
if [[ $OSTYPE == 'darwin'* ]]; then
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
fi
|
|
|
|
cd ~
|