Initial commit

This commit is contained in:
2020-08-09 21:24:35 +01:00
commit 2215ab6112
8 changed files with 3030 additions and 0 deletions

18
.zprofile Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/zsh
# Default applications
export EDITOR="nvim"
export TERMINAL="alacritty"
export BROWSER="firefox"
export READER="zathura"
# XDG Base Directories
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
# Application-specific config
# export ALSA_CONFIG_PATH="$XDG_CONFIG_HOME/alsa/asoundrc"
export CARGO_HOME="$XDG_DATA_HOME/cargo"
export WGETRC="$XDG_CONFIG_HOME/wget/wgetrc"
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"