This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/roles/zsh/files/.zshrc
2022-12-28 10:29:12 +01:00

29 lines
699 B
Bash

export ZSH=$HOME/.oh-my-zsh
plugins=(git asdf colored-man-pages colorize command-not-found copyfile copypath docker extract docker-compose fancy-ctrl-z fzf ripgrep)
export ZSH_THEME="strug"
export ZSH_COLORIZE_TOOL=pygmentize
export FZF_BASE=~/repos/fzf
export FZF_DEFAULT_COMMAND='ag'
source $ZSH/oh-my-zsh.sh
# Git aliases
alias gp='git push'
alias gco='git checkout'
alias gd='git diff'
alias gc='git commit'
alias gpl='git pull'
alias gs='git status'
alias gb='git branch'
alias ga='git add'
alias gl='git log'
# For neovim
PATH=$PATH:/usr/local
alias vi='nvim'
alias vim='nvim'
zstyle ':completion:*:*:docker:*' option-stacking yes
zstyle ':completion:*:*:docker-*:*' option-stacking yes