zshrc.sh 1.73 KB
#@IgnoreInspection AddShebang
# ENVIRONMENT:
export GJ_DEVENV=local_aptproxy

export ZCFG=~/.config/zsh-config
# Path to your oh-my-zsh installation.
export ZSH=$ZCFG/tools/oh-my-zsh

# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="muse"

CASE_SENSITIVE="true"
DISABLE_AUTO_UPDATE="true"
DISABLE_AUTO_TITLE="true"
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
DISABLE_UNTRACKED_FILES_DIRTY="true"
HIST_STAMPS="dd.mm.yyyy"
ZSH_CUSTOM=ZCFG/custom

plugins=(command-not-found common-aliases debian dirhistory git history history-substring-search systemadmin zsh_reload
		pip python virtualenv virtualenvwrapper
		meteor node npm
)

# User configuration
export PATH=$HOME/bin:/usr/local/bin:$PATH
# export MANPATH="/usr/local/man:$MANPATH"

source $ZSH/oh-my-zsh.sh
export LANG=en_US.UTF-8

# ANTIGEN:
#
# source $ZCFG/tools/antigen/antigen.zsh
#
# MUST:
#antigen bundle extract
#
#
# NICE:
#antigen bundle iwhois
#antigen bundle screen
#antigen bundle ssh-agent
#antigen bundle web-search
# # if webdev:
#antigen bundle catimg
#
# docker:
#antigen bundle docker
#
# kde:
#antigen bundle kate
#
# removed:
#antigen bundle autoenv
#antigen bundle iwhois
#antigen bundle per-directory-history
#antigen bundle screen
#
# THEME #----------
#
#antigen theme muse
#
#antigen apply

# ssh
# export SSH_KEY_PATH="~/.ssh/id_rsa"
# zstyle :omz:plugins:ssh-agent agent-forwarding on

# 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"

if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
fi