2021-09-16 18:13:05 +00:00
|
|
|
#####################################################################
|
|
|
|
### Path References #################################################
|
|
|
|
#####################################################################
|
2021-09-16 20:56:05 +00:00
|
|
|
|
2022-08-17 00:42:57 +00:00
|
|
|
export DOTWRYN="$HOME/.wryn"
|
|
|
|
export SFX_PATH="$HOME/Media/sfx"
|
|
|
|
export WALLPAPER_PATH="$HOME/Pictures/bg"
|
|
|
|
export SOURCE_PACKAGES="$HOME/.local/share/source-packages"
|
2021-02-24 22:29:07 +00:00
|
|
|
|
2021-09-16 18:13:05 +00:00
|
|
|
#####################################################################
|
2021-09-16 20:56:05 +00:00
|
|
|
### Application Settings ############################################
|
2021-09-16 18:13:05 +00:00
|
|
|
#####################################################################
|
|
|
|
|
2022-08-17 00:42:57 +00:00
|
|
|
export PREFERRED_EDITOR=(vim vi)
|
2021-09-17 01:52:52 +00:00
|
|
|
|
2021-09-16 18:13:05 +00:00
|
|
|
# should play an audio file argument
|
2021-03-01 21:48:57 +00:00
|
|
|
MEDIA_ENGINE='canberra-gtk-play -f'
|
2022-02-06 08:08:03 +00:00
|
|
|
PLAY_SFX () { $DOTWRYN/bin/play-sound $@ >/dev/null 2>&1; }
|
2021-03-01 21:48:57 +00:00
|
|
|
|
2021-09-16 20:56:05 +00:00
|
|
|
RIPGREP_CONFIG_PATH="$HOME/.config/ripgrep/config"
|
2021-09-16 18:17:13 +00:00
|
|
|
TMUX_DEFAULT_SESSION_NAME='wryn'
|
2021-09-16 20:56:05 +00:00
|
|
|
WEBBROWSER='google-chrome-stable'
|
|
|
|
|
2021-09-23 17:07:12 +00:00
|
|
|
#I3__GLOBAL_FONT_SIZE=
|
|
|
|
#I3__DMENU_FONT_SIZE=
|
|
|
|
#I3__BORDER_PIXEL_SIZE=
|
|
|
|
|
2021-09-16 21:06:49 +00:00
|
|
|
PS1_BRANCH_SYMBOL=''
|
2021-09-16 20:56:05 +00:00
|
|
|
PS1_INDICATOR_SYMBOL='☕'
|
|
|
|
PS1_SEPARATOR='::'
|
2021-09-16 21:06:49 +00:00
|
|
|
PS1_USER='%n'
|
2021-09-16 20:56:05 +00:00
|
|
|
|
2021-09-16 22:15:30 +00:00
|
|
|
WELCOME () {
|
|
|
|
{ figlet 'Welcome, beautiful'; cowsay -p 'damn u sexy'; } | lolcat
|
|
|
|
}
|
2021-03-05 22:28:06 +00:00
|
|
|
|
2021-09-16 18:13:05 +00:00
|
|
|
#####################################################################
|
|
|
|
### External Plugins / Settings #####################################
|
|
|
|
#####################################################################
|
|
|
|
|
2021-09-16 21:33:35 +00:00
|
|
|
EXTERNAL_PLUGINS=(
|
2021-09-16 18:13:05 +00:00
|
|
|
'/usr/share/fzf/key-bindings.zsh'
|
|
|
|
'/usr/share/fzf/completion.zsh'
|
2021-09-16 22:39:58 +00:00
|
|
|
"$DOTWRYN/zsh/plugins/z/z.sh"
|
2021-09-16 18:13:05 +00:00
|
|
|
"$DOTWRYN/zsh/plugins/fzf-tab/fzf-tab.plugin.zsh"
|
2021-09-16 22:47:50 +00:00
|
|
|
"$DOTWRYN/zsh/plugins/code-activator/activator.plugin.zsh"
|
2022-08-10 04:25:19 +00:00
|
|
|
"$DOTWRYN/zsh/plugins/scwrypts/scwrypts.plugin.zsh"
|
2021-09-17 02:12:59 +00:00
|
|
|
"$DOTWRYN/zsh/plugins/ssh/ssh.plugin.zsh"
|
2021-09-16 18:13:05 +00:00
|
|
|
)
|
|
|
|
|
2022-08-17 00:42:57 +00:00
|
|
|
export SCWRYPTS_ENV='local'
|
|
|
|
|
2021-09-16 18:13:05 +00:00
|
|
|
FZF_DEFAULT_OPTS='--reverse'
|
|
|
|
FZF_DEFAULT_COMMAND='rg --files'
|
|
|
|
|
|
|
|
zstyle ':fzf-tab:*' accept-line enter
|
|
|
|
zstyle ':fzf-tab:*' fzf-bindings 'space:accept' ';:toggle'
|
|
|
|
zstyle ':fzf-tab:*' continuous-trigger '/'
|
2021-09-16 22:39:58 +00:00
|
|
|
|
2022-08-17 00:42:57 +00:00
|
|
|
LOAD_ZSH_UTILS() { source "$DOTWRYN/zsh/plugins/scwrypts/zsh/utils/utils.module.zsh"; }
|