2021-12-08 09:38:24 -06:00
|
|
|
# `sheldon` configuration file
|
|
|
|
# ----------------------------
|
|
|
|
#
|
|
|
|
# You can modify this file directly or you can use one of the following
|
|
|
|
# `sheldon` commands which are provided to assist in editing the config file:
|
|
|
|
#
|
|
|
|
# - `sheldon add` to add a new plugin to the config file
|
|
|
|
# - `sheldon edit` to open up the config file in the default editor
|
|
|
|
# - `sheldon remove` to remove a plugin from the config file
|
|
|
|
#
|
|
|
|
# See the documentation for more https://github.com/rossmacarthur/sheldon#readme
|
|
|
|
|
|
|
|
shell = "zsh"
|
|
|
|
|
|
|
|
|
|
|
|
[plugins]
|
|
|
|
|
|
|
|
# oh-my-zsh plugins
|
|
|
|
[plugins.ohmyzsh-plugins]
|
|
|
|
github = 'ohmyzsh/ohmyzsh'
|
|
|
|
dir = 'plugins'
|
2022-12-14 12:32:19 -06:00
|
|
|
use = ['{dotenv,extract}/*.plugin.zsh']
|
2021-12-08 09:38:24 -06:00
|
|
|
|
|
|
|
[plugins.ohmyzsh-lib]
|
|
|
|
github = 'ohmyzsh/ohmyzsh'
|
|
|
|
dir = "lib"
|
|
|
|
use = ['{completion,clipboard}.zsh']
|
|
|
|
|
|
|
|
[plugins.base16]
|
|
|
|
github = "chriskempson/base16-shell"
|
|
|
|
|
|
|
|
[plugins.zsh-defer]
|
|
|
|
github = "romkatv/zsh-defer"
|
|
|
|
|
|
|
|
[plugins.zcolors]
|
2022-02-08 09:38:03 -06:00
|
|
|
github = "marlonrichert/zcolors"
|
2021-12-08 09:38:24 -06:00
|
|
|
|
|
|
|
[plugins.zsh-syntax-highlighting]
|
|
|
|
github = "zsh-users/zsh-syntax-highlighting"
|
|
|
|
apply = ["defer"]
|
|
|
|
|
|
|
|
[plugins.fzf-tab]
|
|
|
|
github = "Aloxaf/fzf-tab"
|
|
|
|
apply = ["defer"]
|
|
|
|
|
|
|
|
[templates]
|
2022-10-26 13:41:41 -05:00
|
|
|
defer = "{% for file in files %}zsh-defer source \"{{ file }}\"\n{% endfor %}"
|