sheldon-plugins.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # `sheldon` configuration file
  2. # ----------------------------
  3. #
  4. # You can modify this file directly or you can use one of the following
  5. # `sheldon` commands which are provided to assist in editing the config file:
  6. #
  7. # - `sheldon add` to add a new plugin to the config file
  8. # - `sheldon edit` to open up the config file in the default editor
  9. # - `sheldon remove` to remove a plugin from the config file
  10. #
  11. # See the documentation for more https://github.com/rossmacarthur/sheldon#readme
  12. shell = "zsh"
  13. # apply = ["defer"]
  14. [plugins.zsh-defer]
  15. github = "romkatv/zsh-defer"
  16. apply = ["source"]
  17. # [templates]
  18. # defer = { value = 'zsh-defer source "{{ file }}"', each = true }
  19. [plugins.compinit]
  20. inline = 'autoload -Uz compinit && zsh-defer compinit && compinit'
  21. [plugins.p10k]
  22. github = "romkatv/powerlevel10k"
  23. use = ["*10k.zsh-theme"]
  24. [plugins.syntax-highlight]
  25. github = "zsh-users/zsh-syntax-highlighting"
  26. [plugins.history-substring-search]
  27. github = "zsh-users/zsh-history-substring-search"
  28. [plugins.fzf]
  29. github = "junegunn/fzf"
  30. use = ["shell/*.zsh"]
  31. [plugins.git]
  32. github = "sorin-ionescu/prezto"
  33. use = ["modules/git/init.zsh", "init.zsh", "modules/completion/init.zsh"]
  34. [plugins.docker-cli]
  35. github = "docker/cli"
  36. use = ["contrib/completion/zsh/_docker"]
  37. [plugins.azure-cli]
  38. github = "azure/azure-cli"
  39. use = ["az.completion"]