From 7a0c0c9eba4d46f3d987762f28319f4170bf749a Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Thu, 3 Apr 2025 19:00:13 -0400 Subject: [PATCH] [UPDATE] Relative pathing to zsh --- zsh/.zshrc | 3 ++- zsh/custom/aliases.zsh | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index c017cfd..8174063 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -64,7 +64,7 @@ precmd_functions+=(set_title) # HIST_STAMPS="mm/dd/yyyy" # 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? # Standard plugins can be found in $ZSH/plugins/ @@ -95,5 +95,6 @@ fi # export ARCHFLAGS="-arch $(uname -m)" export PATH="$PATH:/usr/bin" +export LESS="-R" export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=015,bold" diff --git a/zsh/custom/aliases.zsh b/zsh/custom/aliases.zsh index f2708da..a14b89d 100644 --- a/zsh/custom/aliases.zsh +++ b/zsh/custom/aliases.zsh @@ -7,3 +7,6 @@ alias lla='ls -la' alias fd='fdfind' alias sudo-shell='sudo -E zsh' + +# [Development] +alias erp-dev='cd ~/workspace/pg/erp/ && source venvs/odoo17/bin/activate'