Skip to content

Commit

Permalink
Fig
Browse files Browse the repository at this point in the history
  • Loading branch information
fabuzaid21 committed Jan 1, 2022
1 parent 2230378 commit e300bcc
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@
enabled = true
[push]
default = simple
[pull]
ff = only
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.swp
4 changes: 4 additions & 0 deletions .tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ bind r source-file ~/.tmux.conf
# if-shell "$is_older" "set -g mode-mouse on; set -g mouse-resize-pane on;\
# set -g mouse-select-pane on; set -g mouse-select-window on" "set -g mouse on"


# Fig Tmux Integration: Enabled
source-file ~/.fig/tmux
# End of Fig Tmux Integration
29 changes: 27 additions & 2 deletions .zshrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export PATH="/usr/local/opt/bison/bin:/anaconda3/bin:$PATH"

#### 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
#### END FIG ENV VARIABLES ####
DEFAULT_USER=`whoami`
prompt_context(){}

Expand All @@ -13,7 +16,7 @@ export ZSH=/Users/fabuzaid/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="agnoster"
ZSH_THEME="powerlevel10k/powerlevel10k"

# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
Expand Down Expand Up @@ -91,3 +94,25 @@ source $HOME/google-cloud-sdk/path.zsh.inc
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"

# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/fabuzaid/anaconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/fabuzaid/anaconda3/etc/profile.d/conda.sh" ]; then
. "/Users/fabuzaid/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/Users/fabuzaid/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<

POWERLEVEL9K_DISABLE_CONFIGURATION_WIZARD=true

#### FIG ENV VARIABLES ####
# Please make sure this block is at the end of this file.
[ -s ~/.fig/fig.sh ] && source ~/.fig/fig.sh
#### END FIG ENV VARIABLES ####
8 changes: 8 additions & 0 deletions fig-settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"autocomplete.addStatusToTerminalTitle" : false,
"autocomplete.disable" : false,
"autocomplete.immediatelyExecuteAfterSpace" : true,
"autocomplete.theme" : "dark",
"pty.path" : "\/Users\/fabuzaid\/.nvm\/versions\/node\/v14.17.5\/bin:\/Users\/fabuzaid\/anaconda3\/envs\/neo-tax-ml-service\/bin:\/Users\/fabuzaid\/anaconda3\/condabin:\/Users\/fabuzaid\/google-cloud-sdk\/bin:\/usr\/local\/opt\/postgresql@13\/bin:\/Users\/fabuzaid\/packages\/bin:\/usr\/local\/opt\/ruby\/bin:\/usr\/local\/bin:\/usr\/bin:\/bin:\/usr\/sbin:\/sbin:\/Users\/fabuzaid\/.fig\/bin",
"userShell" : "\/bin\/zsh"
}

0 comments on commit e300bcc

Please sign in to comment.