Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 845 Bytes

zshrc.org

File metadata and controls

46 lines (33 loc) · 845 Bytes

zsh rc file

Introduction

Main bit…

export LD_LIBRARY_PATH=/usr/local/lib


export ZSH=${HOME}/.oh-my-zsh

ZSH_THEME="agnoster"


plugins=(git pass screen)

source $ZSH/oh-my-zsh.sh

Load additional functions.

if [ -f $HOME/.sh_functions.sh ]
then
    . $HOME/.sh_functions.sh
fi
#    proxy
if [[ -f $HOME/.profile ]]
then
    source $HOME/.profile
fi