[UPDATE] Relative pathing to zsh

This commit is contained in:
Daveanand Mannie
2025-04-03 19:00:13 -04:00
parent 4aedbddb8b
commit 7a0c0c9eba
2 changed files with 5 additions and 1 deletions

View File

@@ -64,7 +64,7 @@ precmd_functions+=(set_title)
# HIST_STAMPS="mm/dd/yyyy" # HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom? # Would you like to use another custom folder than $ZSH/custom?
ZSH_CUSTOM=/home/daveanand/.config/nvim/zsh/custom ZSH_CUSTOM=~/.config/nvim/zsh/custom
# Which plugins would you like to load? # Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/ # Standard plugins can be found in $ZSH/plugins/
@@ -95,5 +95,6 @@ fi
# export ARCHFLAGS="-arch $(uname -m)" # export ARCHFLAGS="-arch $(uname -m)"
export PATH="$PATH:/usr/bin" export PATH="$PATH:/usr/bin"
export LESS="-R"
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=015,bold" export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=015,bold"

View File

@@ -7,3 +7,6 @@ alias lla='ls -la'
alias fd='fdfind' alias fd='fdfind'
alias sudo-shell='sudo -E zsh' alias sudo-shell='sudo -E zsh'
# [Development]
alias erp-dev='cd ~/workspace/pg/erp/ && source venvs/odoo17/bin/activate'