Big move about + cleanup
This commit is contained in:
27
setup/env/env.vim
vendored
Normal file
27
setup/env/env.vim
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
" -- RC Resources ----------------------------------------------- {{{
|
||||
let $DOTWRYN=expand("$HOME/.wryn")
|
||||
let $WRYNVIMPATH=expand("$DOTWRYN/vim")
|
||||
let $WRYNVIMRC=expand("$WRYNVIMPATH/rc.vim")
|
||||
let $BASHRC=expand("$HOME/.bashrc")
|
||||
let $ZSHRC=expand("$HOME/.zshrc")
|
||||
" }}}
|
||||
|
||||
" -- Leader bindings -------------------------------------------- {{{
|
||||
let mapleader = "\\"
|
||||
|
||||
nmap <BS> <Nop>
|
||||
let maplocalleader = "\<BS>"
|
||||
" }}}
|
||||
|
||||
" -- Colorscheme Settings --------------------------------------- {{{
|
||||
" favorites : tigrana-256-dark, codedark, lilydjwg_dark, up, skittles_autumn,
|
||||
" ........... vice, lanox, nightsky, made_of_code, moss, skittles_berry, pf_earth
|
||||
"
|
||||
" customs : snow
|
||||
let $COLORSCHEME="default"
|
||||
" }}}
|
||||
|
||||
" -- Web Browser Settings --------------------------------------- {{{
|
||||
" set the webbrowser locally
|
||||
"let $WEBBROWSER=""
|
||||
" }}}
|
81
setup/env/env.zsh
vendored
Normal file
81
setup/env/env.zsh
vendored
Normal file
@ -0,0 +1,81 @@
|
||||
#####################################################################
|
||||
### Path References #################################################
|
||||
#####################################################################
|
||||
|
||||
DOTWRYN="$HOME/.wryn"
|
||||
SFX_PATH="$HOME/Media/sfx"
|
||||
WALLPAPER_PATH="$HOME/Pictures/bg"
|
||||
|
||||
#####################################################################
|
||||
### Application Settings ############################################
|
||||
#####################################################################
|
||||
|
||||
PREFERRED_EDITOR=(vim vi)
|
||||
|
||||
# should play an audio file argument
|
||||
MEDIA_ENGINE='canberra-gtk-play -f'
|
||||
PLAY_SFX () {
|
||||
$HOME/.config/wryn/sfx $@ >/dev/null 2>&1
|
||||
}
|
||||
|
||||
RIPGREP_CONFIG_PATH="$HOME/.config/ripgrep/config"
|
||||
TMUX_DEFAULT_SESSION_NAME='wryn'
|
||||
WEBBROWSER='google-chrome-stable'
|
||||
|
||||
#I3__GLOBAL_FONT_SIZE=
|
||||
#I3__DMENU_FONT_SIZE=
|
||||
#I3__BORDER_PIXEL_SIZE=
|
||||
|
||||
DOTWRYN_AWS_PROFILE='yage'
|
||||
DOTWRYN_AWS_REGION='us-east-2'
|
||||
DOTWRYN_AWS_OUTPUT='json'
|
||||
|
||||
S3_SYNC_AWS_PROFILE=$DOTWRYN_AWS_PROFILE
|
||||
S3_SYNC_BUCKET='yage'
|
||||
S3_SYNC_MEDIA=(
|
||||
#".local/share/dolphin-emu"
|
||||
#"Games/roms"
|
||||
#"Games/wrynscape"
|
||||
"Media/fe10-radiant-dawn-ost"
|
||||
"Media/fiesta-online-ost"
|
||||
"Media/sfx"
|
||||
"Pictures/bg"
|
||||
"Pictures/bg-archives"
|
||||
"Pictures/custom-emoji"
|
||||
"Pictures/jest"
|
||||
"Pictures/profile"
|
||||
)
|
||||
|
||||
|
||||
PS1_BRANCH_SYMBOL=''
|
||||
PS1_INDICATOR_SYMBOL='☕'
|
||||
PS1_SEPARATOR='::'
|
||||
PS1_USER='%n'
|
||||
|
||||
WELCOME () {
|
||||
{ figlet 'Welcome, beautiful'; cowsay -p 'damn u sexy'; } | lolcat
|
||||
}
|
||||
|
||||
#####################################################################
|
||||
### External Plugins / Settings #####################################
|
||||
#####################################################################
|
||||
|
||||
EXTERNAL_PLUGINS=(
|
||||
'/usr/share/fzf/key-bindings.zsh'
|
||||
'/usr/share/fzf/completion.zsh'
|
||||
"$DOTWRYN/zsh/plugins/z/z.sh"
|
||||
"$DOTWRYN/zsh/plugins/fzf-tab/fzf-tab.plugin.zsh"
|
||||
"$DOTWRYN/zsh/plugins/code-activator/activator.plugin.zsh"
|
||||
"$DOTWRYN/zsh/plugins/latex/latex.plugin.zsh"
|
||||
"$DOTWRYN/zsh/plugins/ssh/ssh.plugin.zsh"
|
||||
"$DOTWRYN/zsh/plugins/memo/memo.plugin.zsh"
|
||||
)
|
||||
|
||||
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 '/'
|
||||
|
||||
export ZSH_COLOR_UTIL="$DOTWRYN/zsh/plugins/color/color.module.zsh"
|
Reference in New Issue
Block a user