hard link to my current dotfiles

This commit is contained in:
viktorbarzin 2020-02-13 19:10:15 +00:00
parent 816882e2c6
commit 0df6884647
No known key found for this signature in database
GPG key ID: 0EB088298288D958
5 changed files with 99 additions and 16 deletions

13
.zshrc
View file

@ -60,7 +60,7 @@ HIST_STAMPS="dd.mm.yyyy"
# 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=()
plugins=(zsh-autosuggestion zsh-syntax-highlighting encode64 gitignore)
source $ZSH/oh-my-zsh.sh
# tmux source-file /home/viktor/.tmux.conf
@ -99,11 +99,6 @@ fi
# Load aliases
. ~/.bash_aliases
j () {
local dir="$(jump cd $@)"
test -d "$dir" && cd "$dir"
}
# . ~/.bash_completion
# Locale settings for perl
@ -151,7 +146,7 @@ export PATH="/home/viktor/go/bin:$PATH"
export PATH="/opt/jdk-12.0.1/bin:$PATH"
# add azure core tools to path
export PATH="/opt/azure/:$PATH"
# export PATH="/opt/azure/:$PATH"
# add k8s autocompletion
# source <(kubectl completion zsh)
@ -162,3 +157,7 @@ export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"# This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"# This loads nvm bash_completion
export PATH="/home/viktor/.local/bin:$PATH"
# Load Z to jump around recent dirs
. ~/z.sh