dotfiles/.zshrc

96 lines
2.8 KiB
Bash
Raw Normal View History

2018-05-03 20:23:53 +02:00
# Path to your oh-my-zsh installation.
export ZSH=/usr/share/oh-my-zsh
2018-05-03 20:23:53 +02:00
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="agnoster"
# Uncomment the following line to use case-sensitive completion.
CASE_SENSITIVE="true"
# Disable auto-update
zstyle ':omz:update' mode disabled
2018-05-03 20:23:53 +02:00
# Uncomment the following line to display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
HIST_STAMPS="dd.mm.yyyy"
# Global history search
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
2018-05-03 20:23:53 +02:00
2023-06-23 15:16:48 +02:00
[[ -s /home/.autojump/etc/profile.d/autojump.sh ]] && source /home/.autojump/etc/profile.d/autojump.sh
autoload -U compinit && compinit -u
2018-05-03 20:23:53 +02:00
# Which plugins would you like to load? (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=(
# acs command → print aliases by group
aliases
2018-05-03 20:23:53 +02:00
colored-man-pages
# cat with colors → ccat or cless
colorize
# commands to copy file content or absolute path to clipboard
copyfile
copypath
# cpv command which uses rsync
2018-05-03 20:23:53 +02:00
cp
# docker autocomplete
2018-05-03 20:23:53 +02:00
docker
# unique command for most archives
extract
# fuzzy finder for history, files, docker, process, etc (see fzf)
fzf-zsh-plugin
# aliases
git
# password-store autocomplete
pass
# fish-like completion as you type
zsh-autosuggestions
# fish-like syntax hightlightin as you type
zsh-syntax-highlighting
2018-05-03 20:23:53 +02:00
)
# Enable option stacking in autocomplete, i.e. docker run -it <TAB>
zstyle ':completion:*:*:docker:*' option-stacking yes
zstyle ':completion:*:*:docker-*:*' option-stacking yes
2018-05-03 20:23:53 +02:00
# Load ZSH
source $ZSH/oh-my-zsh.sh
2018-05-03 20:23:53 +02:00
# Preferred editor for local and remote sessions
export EDITOR=vim
2018-05-03 20:23:53 +02:00
# Do not print user@hostname if user is myself
2019-01-08 20:01:04 +01:00
DEFAULT_USER=`whoami`
2018-05-03 20:23:53 +02:00
# Aliases
2018-05-03 20:23:53 +02:00
alias cp="cpv"
alias lt='ls -lath'
2018-05-03 20:23:53 +02:00
# To use when .cfg contains a bare git repo.
# See this https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
config config --local status.showUntrackedFiles no
unset SSH_AGENT_PID
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
fi
export GPG_TTY="$(tty)"
gpg-connect-agent updatestartuptty /bye >/dev/null
2023-03-06 16:36:20 +01:00
if [ -f ~/.aliases ]; then
. ~/.aliases
fi
2023-03-07 15:26:08 +01:00
if [ -f ~/.env ]; then
. ~/.env
fi