move plugins outside plugins directory
This commit is contained in:
parent
26d3133f4a
commit
efdebbc17b
3 changed files with 10 additions and 10 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
# Created by https://www.toptal.com/developers/gitignore/api/python
|
# Created by https://www.toptal.com/developers/gitignore/api/python
|
||||||
# Edit at https://www.toptal.com/developers/gitignore?templates=python
|
# Edit at https://www.toptal.com/developers/gitignore?templates=python
|
||||||
|
|
||||||
|
@ -159,4 +158,5 @@ cython_debug/
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/python
|
# End of https://www.toptal.com/developers/gitignore/api/python
|
||||||
|
|
||||||
.task.mk
|
.task.mk
|
||||||
lib/plugins/
|
plugins/
|
||||||
|
|
||||||
|
|
|
@ -1,33 +1,33 @@
|
||||||
.dotfiles/lib/plugins/base16:
|
.dotfiles/plugins/base16:
|
||||||
rereshPeriod: 168h
|
rereshPeriod: 168h
|
||||||
type: git-repo
|
type: git-repo
|
||||||
url: https://github.com/chriskempson/base16-shell.git
|
url: https://github.com/chriskempson/base16-shell.git
|
||||||
|
|
||||||
.dotfiles/lib/plugins/zsh-defer:
|
.dotfiles/plugins/zsh-defer:
|
||||||
rereshPeriod: 168h
|
rereshPeriod: 168h
|
||||||
type: git-repo
|
type: git-repo
|
||||||
url: https://github.com/romkatv/zsh-defer.git
|
url: https://github.com/romkatv/zsh-defer.git
|
||||||
|
|
||||||
.dotfiles/lib/plugins/zsh-syntax-highlighting:
|
.dotfiles/plugins/zsh-syntax-highlighting:
|
||||||
rereshPeriod: 168h
|
rereshPeriod: 168h
|
||||||
type: git-repo
|
type: git-repo
|
||||||
url: https://github.com/zsh-users/zsh-syntax-highlighting.git
|
url: https://github.com/zsh-users/zsh-syntax-highlighting.git
|
||||||
|
|
||||||
.dotfiles/lib/plugins/fzf-tab:
|
.dotfiles/plugins/fzf-tab:
|
||||||
rereshPeriod: 168h
|
rereshPeriod: 168h
|
||||||
type: git-repo
|
type: git-repo
|
||||||
url: https://github.com/Aloxaf/fzf-tab.git
|
url: https://github.com/Aloxaf/fzf-tab.git
|
||||||
|
|
||||||
.dotfiles/lib/plugins/oh-my-zsh:
|
.dotfiles/plugins/oh-my-zsh:
|
||||||
type: archive
|
type: archive
|
||||||
url: https://github.com/ohmyzsh/ohmyzsh/archive/master.tar.gz
|
url: https://github.com/ohmyzsh/ohmyzsh/archive/master.tar.gz
|
||||||
stripComponents: 2
|
stripComponents: 2
|
||||||
refreshPeriod: 168h
|
refreshPeriod: 168h
|
||||||
include:
|
include:
|
||||||
- "*/lib/{clipboard,completion}.zsh"
|
- "*/{clipboard,completion}.zsh"
|
||||||
- "*/plugins/{dotenv,extract}/**"
|
- "*/plugins/{dotenv,extract}/**"
|
||||||
|
|
||||||
.dotfiles/lib/plugins/fzf:
|
.dotfiles/plugins/fzf:
|
||||||
type: archive
|
type: archive
|
||||||
# type: git-repo
|
# type: git-repo
|
||||||
url: https://github.com/junegunn/fzf/archive/master.tar.gz
|
url: https://github.com/junegunn/fzf/archive/master.tar.gz
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env zsh
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
PLUGINS_DIR=$DOTFILES_DIR/lib/plugins
|
PLUGINS_DIR=$DOTFILES_DIR/plugins
|
||||||
|
|
||||||
source $PLUGINS_DIR/zsh-defer/zsh-defer.plugin.zsh
|
source $PLUGINS_DIR/zsh-defer/zsh-defer.plugin.zsh
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue