mirror of
https://github.com/dnlbauer/dotfiles.git
synced 2026-09-10 21:45:30 +00:00
antigen
This commit is contained in:
28
profiles/base/.antigenrc
Normal file
28
profiles/base/.antigenrc
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
source $HOME/bin/antigen.zsh
|
||||||
|
antigen use oh-my-zsh
|
||||||
|
|
||||||
|
# bundles
|
||||||
|
antigen bundle git
|
||||||
|
antigen bundle zsh-users/zsh-completions
|
||||||
|
antigen bundle pip
|
||||||
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
||||||
|
antigen bundle zsh-users/zsh-history-substring-search
|
||||||
|
|
||||||
|
antigen bundle command-not-found
|
||||||
|
|
||||||
|
# theme
|
||||||
|
export TERM="xterm-256color"
|
||||||
|
DEFAULT_USER=bauer
|
||||||
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(ssh context dir vcs anaconda)
|
||||||
|
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(background_jobs status time)
|
||||||
|
|
||||||
|
# Anaconda
|
||||||
|
POWERLEVEL9K_ANACONDA_RIGHT_DELIMITER='>'
|
||||||
|
POWERLEVEL9K_ANACONDA_LEFT_DELIMITER='<'
|
||||||
|
POWERLEVEL9K_ANACONDA_BACKGROUND='24'
|
||||||
|
POWERLEVEL9K_ANACONDA_FOREGROUND='111'
|
||||||
|
|
||||||
|
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
|
||||||
|
antigen theme bhilburn/powerlevel9k powerlevel9k
|
||||||
|
|
||||||
|
antigen apply
|
||||||
@@ -1,23 +1,15 @@
|
|||||||
# Change default zim location
|
# export ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim
|
||||||
export ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim
|
# # [[ -s ${ZIM_HOME}/init.zsh ]] && source ${ZIM_HOME}/init.zsh
|
||||||
|
|
||||||
# Start zim
|
source $HOME/.antigenrc
|
||||||
[[ -s ${ZIM_HOME}/init.zsh ]] && source ${ZIM_HOME}/init.zsh
|
|
||||||
|
|
||||||
# source other dotfiles
|
# source other dotfiles
|
||||||
source $HOME/.environment
|
source $HOME/.environment
|
||||||
if [ -f "$HOME/.environment.local" ]; then
|
if [ -f "$HOME/.environment.local" ]; then
|
||||||
source $HOME/.environment.local
|
source $HOME/.environment.local
|
||||||
fi
|
fi
|
||||||
|
|
||||||
source $HOME/.aliases
|
source $HOME/.aliases
|
||||||
source $HOME/.functions
|
source $HOME/.functions
|
||||||
|
|
||||||
if [ -z "$GMXRC" ]; then
|
|
||||||
GMXRC="/opt/gromacs-2018/bin/GMXRC"
|
|
||||||
fi
|
|
||||||
source $GMXRC
|
|
||||||
|
|
||||||
# config specific to this machine
|
# config specific to this machine
|
||||||
if [ -f $HOME/.zshrc_local ]; then
|
if [ -f $HOME/.zshrc_local ]; then
|
||||||
source $HOME/.zshrc_local
|
source $HOME/.zshrc_local
|
||||||
@@ -28,3 +20,9 @@ eval "$(fasd --init auto)"
|
|||||||
|
|
||||||
# marker
|
# marker
|
||||||
[[ -s "$HOME/.local/share/marker/marker.sh" ]] && source "$HOME/.local/share/marker/marker.sh"
|
[[ -s "$HOME/.local/share/marker/marker.sh" ]] && source "$HOME/.local/share/marker/marker.sh"
|
||||||
|
|
||||||
|
# gromacs
|
||||||
|
if [ -z "$GMXRC" ]; then
|
||||||
|
GMXRC="/opt/gromacs-2018/bin/GMXRC"
|
||||||
|
fi
|
||||||
|
source $GMXRC
|
||||||
Reference in New Issue
Block a user