summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-10-04 13:19:25 +0100
committerGeorge Abbott <george@gabbott.dev>2023-10-04 13:19:25 +0100
commit710237075def0c6dde5fcd444330092d6e02ece9 (patch)
treeb4179b30e85aae301b825c8c6ed89ed919638ea7
parent5e590d20bb95702a7fb178cfcb8194f62cf0bc0b (diff)
Update l, ll aliasesHEADmaster
-rw-r--r--zsh/.zshrc13
1 files changed, 10 insertions, 3 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 057a2ae..65eaed9 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -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"