Skip to content

Commit

Permalink
.{bashrc,zshrc}.local
Browse files Browse the repository at this point in the history
  • Loading branch information
fabuzaid21 committed Jan 22, 2022
1 parent cc85251 commit e0c1355
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ export PKG_CONFIG_PATH=$HOME/packages/lib/pkgconfig:$PKG_CONFIG_PATH
export LD_LIBRARY_PATH=$HOME/packages/lib:$LD_LIBRARY_PATH
export CCACHE_DIR=$HOME/.ccache

if [ -f $HOME/dotfiles/.bashrc.local ]; then
source $HOME/dotfiles/.bashrc.local
fi
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.swp
.bashrc.local
.zshrc.local
7 changes: 4 additions & 3 deletions .zshrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

#### FIG ENV VARIABLES ####
# Please make sure this block is at the start of this file.
[ -s ~/.fig/shell/pre.sh ] && source ~/.fig/shell/pre.sh
Expand Down Expand Up @@ -63,8 +62,6 @@ ZSH_THEME="powerlevel10k/powerlevel10k"
plugins=(git)

source $ZSH/oh-my-zsh.sh
source $HOME/google-cloud-sdk/completion.zsh.inc
source $HOME/google-cloud-sdk/path.zsh.inc

# User configuration

Expand Down Expand Up @@ -116,3 +113,7 @@ POWERLEVEL9K_DISABLE_CONFIGURATION_WIZARD=true
# Please make sure this block is at the end of this file.
[ -s ~/.fig/fig.sh ] && source ~/.fig/fig.sh
#### END FIG ENV VARIABLES ####

if [ -f $HOME/dotfiles/.zshrc.local ]; then
source $HOME/dotfiles/.zshrc.local
fi

0 comments on commit e0c1355

Please sign in to comment.