diff --git a/config_files/lsd_config.yaml b/config_files/lsd_config.yaml index a699dd5..2fcdcef 100644 --- a/config_files/lsd_config.yaml +++ b/config_files/lsd_config.yaml @@ -1,5 +1,5 @@ header: true -layout: oneline +layout: tree recursion: enabled: true depth: 1 diff --git a/zsh/.zshrc b/zsh/.zshrc index 5b6f482..39f1a7e 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -74,6 +74,7 @@ ZSH_CUSTOM=~/.config/nvim/zsh/custom plugins=( zsh-autosuggestions zsh-syntax-highlighting + direnv ) source $ZSH/oh-my-zsh.sh diff --git a/zsh/custom/aliases.zsh b/zsh/custom/aliases.zsh index aa5611b..b532ece 100644 --- a/zsh/custom/aliases.zsh +++ b/zsh/custom/aliases.zsh @@ -9,11 +9,14 @@ alias fd='fdfind' alias sudo-shell='sudo -E zsh' # [Development] +# conditional wezterm if grep -qEi "(Microsoft|WSL)" /proc/version &> /dev/null; then alias wezterm='/mnt/c/Users/DaveanandMannie/scoop/apps/wezterm/current/wezterm.exe' else alias wezterm='wezterm' # Or point to native binary if needed fi +alias docker='sudo docker' +alias lg='lazygit' # [Odoo] alias erp-dev='cd ~/workspace/pg/erp/' alias erp-dev-server='erp-dev && source venvs/odoo18/bin/activate && cd odoo && python3 odoo-bin -c ../odoo.conf --dev all' @@ -22,4 +25,3 @@ alias erp-dev-test='cd ~/workspace/pg/erp && source venvs/odoo18/bin/activate && alias erp-portal-server='erp-dev && source venvs/odoo17/bin/activate && cd odoo && python3 odoo-bin -c ../.portalrc --dev all' alias portal-dev='cd ~/workspace/pg/portal/' -alias lg='lazygit'