Added external plugins as submodules

This commit is contained in:
Wryn Wagner 2021-09-16 12:13:05 -06:00
parent ab28f1fab4
commit 5df7a59081
7 changed files with 39 additions and 8 deletions

6
.gitmodules vendored
View File

@ -2,3 +2,9 @@
path = zsh/utils/color path = zsh/utils/color
url = https://wryn.cloud/gizmos/color-zsh url = https://wryn.cloud/gizmos/color-zsh
update = rebase update = rebase
[submodule "z-navigator"]
path = zsh/plugins/z
url = https://github.com/rupa/z.git
[submodule "fzf-tab"]
path = zsh/plugins/fzf-tab
url = https://github.com/Aloxaf/fzf-tab

33
env/env.zsh vendored
View File

@ -1,20 +1,37 @@
# script path references #####################################################################
### Path References #################################################
#####################################################################
DOTWRYN="$HOME/.wryn" DOTWRYN="$HOME/.wryn"
SCHOOL_PATH="$HOME/School"
SFX_PATH="$HOME/Media/sfx" SFX_PATH="$HOME/Media/sfx"
WALLPAPER_PATH="$HOME/Pictures/bg" WALLPAPER_PATH="$HOME/Pictures/bg"
#####################################################################
### Applications / Application Settings #############################
#####################################################################
# ordered from least-preferred to most-preferred # ordered from least-preferred to most-preferred
PREFERRED_EDITOR=(vi vim) PREFERRED_EDITOR=(vi vim)
# plays audio files located throughout the system # should play an audio file argument
MEDIA_ENGINE='canberra-gtk-play -f' MEDIA_ENGINE='canberra-gtk-play -f'
# default applications
WEBBROWSER='google-chrome-stable' WEBBROWSER='google-chrome-stable'
TMUX_DEFAULT_SESSION_NAME='main' TMUX_DEFAULT_SESSION_NAME='main'
# external plugins #####################################################################
EXTERNAL_PLUGIN_LIST=() ### External Plugins / Settings #####################################
#####################################################################
EXTERNAL_PLUGIN_LIST=(
"$DOTWRYN/zsh/plugins/z/z.sh"
'/usr/share/fzf/key-bindings.zsh'
'/usr/share/fzf/completion.zsh'
"$DOTWRYN/zsh/plugins/fzf-tab/fzf-tab.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 '/'

View File

@ -1,5 +1,7 @@
cmake cmake
cowsay cowsay
figlet figlet
fzf
lolcat lolcat
python python
ripgrep

View File

@ -1,5 +1,7 @@
cmake cmake
cowsay cowsay
figlet figlet
fzf
lolcat lolcat
python3-dev python3-dev
ripgrep

View File

@ -1,5 +1,7 @@
cmake cmake
cowsay cowsay
figlet figlet
fzf
lolcat lolcat
python3 python3
rg

1
zsh/plugins/fzf-tab Submodule

@ -0,0 +1 @@
Subproject commit 220bee396dd3c2024baa54015a928d5915e4f48f

1
zsh/plugins/z Submodule

@ -0,0 +1 @@
Subproject commit b82ac78a2d4457d2ca09973332638f123f065fd1