# Path to your oh-my-zsh installation. export ZSH="$HOME/.oh-my-zsh" # plugins if [ -f ~/.dotfiles/shell/plugins ] then source ~/.dotfiles/shell/plugins else plugins=( git pip screen laravel dirhistory per-directory-history z ) fi source $ZSH/oh-my-zsh.sh # User configuration # Helper Functions # Returns whether the given command is executable or aliased. _has() { return $( whence $1 >/dev/null ) } # Set vim as default editor export EDITOR='vim' # aliases alias ll='ls -l' alias la='ls -la' alias :q='exit' alias fresh="source ~/.zshrc" # ZSH Theme ZSH_THEME="" PROMPT_COLOR="cyan" # localcommands if [ -f ~/.dotfiles/shell/localcommands ] then source ~/.dotfiles/shell/localcommands fi PROMPT="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )" PROMPT+=' %{$fg[${PROMPT_COLOR}]%}%c%{$reset_color%} $(git_prompt_info)' ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}git:(%{$fg[red]%}" ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗" ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" # Tmuxinator autocomplete if [ -f ~/.bin/tmuxinator.zsh ]; then source ~/.bin/tmuxinator.zsh fi # fzf + ag configuration if _has fzf && _has ag; then export FZF_CTRL_T_COMMAND='ag --hidden --nocolor --ignore .git -g ""' fi export FZF_ALT_C_COMMAND='find . -type d' if _has ruby; then export PATH="$PATH:$(ruby -e 'print Gem.user_dir')/bin" fi if [ -e /home/saibotk/.nix-profile/etc/profile.d/nix.sh ]; then . /home/saibotk/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer #THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! [[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ]] && source "$SDKMAN_DIR/bin/sdkman-init.sh" 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