2020-04-24 17:15:48 +02:00
|
|
|
# If you come from bash you might have to change your $PATH.
|
|
|
|
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
|
|
|
|
|
|
|
# Path to your oh-my-zsh installation.
|
|
|
|
export ZSH="/home/dbroqua/.oh-my-zsh"
|
|
|
|
|
|
|
|
# Set name of the theme to load --- if set to "random", it will
|
|
|
|
# load a random theme each time oh-my-zsh is loaded, in which case,
|
|
|
|
# to know which specific one was loaded, run: echo $RANDOM_THEME
|
|
|
|
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
|
|
|
|
#ZSH_THEME="robbyrussell"
|
2020-09-09 10:14:42 +02:00
|
|
|
#ZSH_THEME="xiong-chiamiov-plus"
|
|
|
|
ZSH_THEME="tywr"
|
2020-04-24 17:15:48 +02:00
|
|
|
|
|
|
|
# Set list of themes to pick from when loading at random
|
|
|
|
# Setting this variable when ZSH_THEME=random will cause zsh to load
|
|
|
|
# a theme from this variable instead of looking in ~/.oh-my-zsh/themes/
|
|
|
|
# If set to an empty array, this variable will have no effect.
|
|
|
|
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
|
|
|
|
|
|
|
|
# Uncomment the following line to use case-sensitive completion.
|
|
|
|
# CASE_SENSITIVE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to use hyphen-insensitive completion.
|
|
|
|
# Case-sensitive completion must be off. _ and - will be interchangeable.
|
|
|
|
# HYPHEN_INSENSITIVE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to disable bi-weekly auto-update checks.
|
|
|
|
# DISABLE_AUTO_UPDATE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to automatically update without prompting.
|
|
|
|
# DISABLE_UPDATE_PROMPT="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to change how often to auto-update (in days).
|
|
|
|
# export UPDATE_ZSH_DAYS=13
|
|
|
|
|
|
|
|
# Uncomment the following line if pasting URLs and other text is messed up.
|
|
|
|
# DISABLE_MAGIC_FUNCTIONS=true
|
|
|
|
|
|
|
|
# Uncomment the following line to disable colors in ls.
|
|
|
|
# DISABLE_LS_COLORS="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to disable auto-setting terminal title.
|
|
|
|
# DISABLE_AUTO_TITLE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to enable command auto-correction.
|
|
|
|
ENABLE_CORRECTION="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
|
|
|
COMPLETION_WAITING_DOTS="true"
|
|
|
|
|
|
|
|
# Uncomment the following line if you want to disable marking untracked files
|
|
|
|
# under VCS as dirty. This makes repository status check for large repositories
|
|
|
|
# much, much faster.
|
|
|
|
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
|
|
|
|
|
|
|
# Uncomment the following line if you want to change the command execution time
|
|
|
|
# stamp shown in the history command output.
|
|
|
|
# You can set one of the optional three formats:
|
|
|
|
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
|
|
|
# or set a custom format using the strftime function format specifications,
|
|
|
|
# see 'man strftime' for details.
|
|
|
|
# HIST_STAMPS="mm/dd/yyyy"
|
|
|
|
|
|
|
|
# Would you like to use another custom folder than $ZSH/custom?
|
|
|
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
|
|
|
|
|
|
|
# Which plugins would you like to load?
|
|
|
|
# Standard plugins can be found in ~/.oh-my-zsh/plugins/*
|
|
|
|
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
|
|
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
|
|
|
# Add wisely, as too many plugins slow down shell startup.
|
|
|
|
plugins=(
|
2020-07-05 10:43:14 +02:00
|
|
|
git
|
|
|
|
git-flow
|
|
|
|
compleat
|
|
|
|
encode64
|
|
|
|
sudo
|
|
|
|
docker
|
|
|
|
gradle
|
|
|
|
yarn
|
|
|
|
yarn-autocompletions
|
|
|
|
node
|
2022-02-04 11:36:41 +01:00
|
|
|
nvm
|
|
|
|
emoji
|
2020-04-24 17:15:48 +02:00
|
|
|
)
|
|
|
|
|
2021-10-21 21:40:47 +02:00
|
|
|
#zstyle :omz:plugins:ssh-agent agent-forwarding on
|
|
|
|
#zstyle :omz:plugins:ssh-agent identities id_rsa
|
|
|
|
|
2020-04-24 17:15:48 +02:00
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
|
|
# User configuration
|
|
|
|
|
|
|
|
# export MANPATH="/usr/local/man:$MANPATH"
|
|
|
|
|
|
|
|
# You may need to manually set your language environment
|
|
|
|
# export LANG=en_US.UTF-8
|
|
|
|
|
|
|
|
# Preferred editor for local and remote sessions
|
|
|
|
# if [[ -n $SSH_CONNECTION ]]; then
|
|
|
|
# export EDITOR='vim'
|
|
|
|
# else
|
|
|
|
# export EDITOR='mvim'
|
|
|
|
# fi
|
|
|
|
|
|
|
|
# Compilation flags
|
|
|
|
# export ARCHFLAGS="-arch x86_64"
|
|
|
|
|
|
|
|
# Set personal aliases, overriding those provided by oh-my-zsh libs,
|
|
|
|
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
|
|
|
|
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
|
|
|
|
# For a full list of active aliases, run `alias`.
|
|
|
|
#
|
|
|
|
# Example aliases
|
|
|
|
# alias zshconfig="mate ~/.zshrc"
|
|
|
|
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
|
|
|
|
|
|
|
zstyle -s ':completion:*:hosts' hosts _ssh_config
|
|
|
|
[[ -r ~/.ssh/config ]] && _ssh_config+=($(cat ~/.ssh/config | sed -ne 's/Host[=\t ]//p'))
|
|
|
|
zstyle ':completion:*:hosts' hosts $_ssh_config
|
|
|
|
|
|
|
|
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
2022-02-04 11:36:41 +01:00
|
|
|
if [ -f "/etc/profile.d/vte.sh" ]; then
|
|
|
|
source /etc/profile.d/vte.sh
|
|
|
|
fi
|
2020-04-24 17:15:48 +02:00
|
|
|
fi
|
|
|
|
|
2020-06-02 10:21:22 +02:00
|
|
|
# Load dircolors
|
|
|
|
test -r "~/.dir_colors" && eval $(dircolors ~/.dir_colors)
|
|
|
|
|
2020-04-24 17:15:48 +02:00
|
|
|
# Load exports
|
|
|
|
source ~/.exports
|
2020-06-01 21:21:09 +02:00
|
|
|
source ~/.exports.private
|
2020-04-24 17:15:48 +02:00
|
|
|
|
|
|
|
# Load aliases
|
|
|
|
source ~/.aliases
|
|
|
|
source ~/.aliases.private
|
|
|
|
|
2020-06-03 14:20:15 +02:00
|
|
|
. ~/.profile
|
|
|
|
|
2020-04-24 17:15:48 +02:00
|
|
|
neofetch
|
|
|
|
dh
|
2022-02-04 11:36:41 +01:00
|
|
|
#uname -a|ponysay -f pinkie
|
|
|
|
#uname -a|ponysay
|
2020-08-16 18:50:09 +02:00
|
|
|
|
|
|
|
ssh() {
|
|
|
|
tmux rename-window "$*"
|
|
|
|
command ssh "$@"
|
2022-02-04 11:36:41 +01:00
|
|
|
# echo "Counting to 60"
|
|
|
|
# sleep 60 && exit
|
2020-08-16 18:50:09 +02:00
|
|
|
tmux rename-window "zsh"
|
|
|
|
}
|
2020-08-30 21:45:44 +02:00
|
|
|
|
2021-10-21 21:40:47 +02:00
|
|
|
if test -z "${XDG_RUNTIME_DIR}"; then
|
|
|
|
export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir
|
|
|
|
if ! test -d "${XDG_RUNTIME_DIR}"; then
|
|
|
|
mkdir "${XDG_RUNTIME_DIR}"
|
|
|
|
chmod 0700 "${XDG_RUNTIME_DIR}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
export SSH_AUTH_SOCK=${HOME}/.ssh/agent
|
|
|
|
if ! pgrep -u ${USER} ssh-agent > /dev/null; then
|
|
|
|
rm -f ${SSH_AUTH_SOCK}
|
|
|
|
fi
|
2020-08-30 21:45:44 +02:00
|
|
|
|
2021-10-21 21:40:47 +02:00
|
|
|
if [ ! -S ${SSH_AUTH_SOCK} ]; then
|
|
|
|
eval $(ssh-agent -a ${SSH_AUTH_SOCK} 2> /dev/null)
|
|
|
|
ssh-add
|
|
|
|
fi
|
2022-02-04 11:36:41 +01:00
|
|
|
|
|
|
|
export NVM_DIR="$HOME/.nvm"
|
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
|
|
|
2022-03-07 07:25:13 +01:00
|
|
|
#if [ -z "$DISPLAY" ] && [ "$(tty)" == "/dev/tty1" ]; then
|
|
|
|
# export MOZ_ENABLE_WAYLAND=1
|
|
|
|
# exec sway
|
|
|
|
#fi
|
2022-04-19 08:18:20 +02:00
|
|
|
|
2022-04-25 07:50:50 +02:00
|
|
|
ip addr show tun0 > /dev/null 2>&1
|
|
|
|
EXISTS=$?
|
|
|
|
if [ `hostname` = "marty" ] && [ ${EXISTS} -ne 0 ] ; then
|
2022-04-19 08:18:20 +02:00
|
|
|
echo "Connecting people :|"
|
|
|
|
nmcli connection up VPN-DarKou --ask
|
|
|
|
fi
|