| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # `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"
- # apply = ["defer"]
- [plugins.zsh-defer]
- github = "romkatv/zsh-defer"
- apply = ["source"]
- # [templates]
- # defer = { value = 'zsh-defer source "{{ file }}"', each = true }
- [plugins.compinit]
- inline = 'autoload -Uz compinit && zsh-defer compinit && compinit'
- [plugins.p10k]
- github = "romkatv/powerlevel10k"
- use = ["*10k.zsh-theme"]
- [plugins.syntax-highlight]
- github = "zsh-users/zsh-syntax-highlighting"
- [plugins.history-substring-search]
- github = "zsh-users/zsh-history-substring-search"
- [plugins.fzf]
- github = "junegunn/fzf"
- use = ["shell/*.zsh"]
- [plugins.git]
- github = "sorin-ionescu/prezto"
- use = ["modules/git/init.zsh", "init.zsh", "modules/completion/init.zsh"]
- [plugins.docker-cli]
- github = "docker/cli"
- use = ["contrib/completion/zsh/_docker"]
|