diff --git a/config/user-dirs.dirs b/config/user-dirs.dirs new file mode 100644 index 0000000..21f12e2 --- /dev/null +++ b/config/user-dirs.dirs @@ -0,0 +1,8 @@ +XDG_DESKTOP_DIR="$HOME/Desktop" +XDG_DOCUMENTS_DIR="$HOME/Nextcloud/Documents" +XDG_DOWNLOAD_DIR="$HOME/Downloads" +XDG_MUSIC_DIR="$HOME/Music" +XDG_PICTURES_DIR="$HOME/Nextcloud/Pictures" +XDG_PUBLICSHARE_DIR="$HOME/Nextcloud/Public" +XDG_TEMPLATES_DIR="$HOME/Templates" +XDG_VIDEOS_DIR="$HOME/Videos" diff --git a/profile b/profile index 13858d3..a246532 100644 --- a/profile +++ b/profile @@ -37,7 +37,8 @@ fi alias ccat="highlight -O ansi $@" alias ls="ls -h --color=auto" -alias myip="curl https://ifconfig.co" +alias myip6="curl https://ifconfig.co" +alias myip4="curl -4 https://ifconfig.co" alias vim="nvim $@" alias wget="wget --hsts-file $HOME/.cache/wget/hsts" alias woodpecker="$HOME/.local/bin/woodpecker --log-level=''" diff --git a/zshrc b/zshrc index d023a77..12292cc 100644 --- a/zshrc +++ b/zshrc @@ -1,3 +1,7 @@ +export HISTFILE="$HOME/.cache/zsh/history" +export HISTSIZE=10000 +export SAVEHIST=10000 + # Add our zprompts to fpath to use bunni theme fpath=("$HOME/.config/zsh/zprompts" "$fpath[@]")