diff options
author | George Abbott <george@gabbott.dev> | 2023-10-04 13:19:25 +0100 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2023-10-04 13:19:25 +0100 |
commit | 710237075def0c6dde5fcd444330092d6e02ece9 (patch) | |
tree | b4179b30e85aae301b825c8c6ed89ed919638ea7 | |
parent | 5e590d20bb95702a7fb178cfcb8194f62cf0bc0b (diff) |
-rw-r--r-- | zsh/.zshrc | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -51,6 +51,13 @@ export EDITOR="/usr/bin/nvim" PATH=$PATH:$HOME/.local/share/go/bin:$ORGD_SCR_PATH:$HOME/.local/share/python/bin +################################ website ###################################### +export NGINX_PATH="$HOME/web/nginx" +export WEBSITE_URL="https://gabbott.dev" +export WEBSITE_PATH="$HOME/web/www/gabbott.dev/gabbott.dev" +export BLOG_URL="$WEBSITE_URL/blog" +export BLOG_PATH="$WEBSITE_PATH/blog" + ########## Configuration ############# if [[ ! -d ~/.config/zsh/zsh-autopair ]]; then git clone https://github.com/hlissner/zsh-autopair ~/.config/zsh/zsh-autopair @@ -66,9 +73,9 @@ source "$XDG_CONFIG_HOME/zsh/.zshrc-abbrev" alias sudo="sudo " # ls / exa -alias ls='exa --color=always' -alias l='exa --header --long --git --time-style=long-iso --group --color=always' -alias ll="exa -a --header --long --git --time-style=long-iso --group" +alias ls='eza --color=always' +alias l='eza --header --long --git --time-style=long-iso --group --color=always --group-directories-first' +alias ll="eza -a --header --long --git --time-style=long-iso --group --group-directories-first" abbrev-alias x="clear; ls" abbrev-alias t="ls --tree" |