my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
630 B

3 years ago
  1. # ------------------------------------------------------------------------------
  2. # FILE: compleat.plugin.zsh
  3. # DESCRIPTION: oh-my-zsh plugin file.
  4. # AUTHOR: Sorin Ionescu ([email protected])
  5. # VERSION: 1.0.0
  6. # ------------------------------------------------------------------------------
  7. if (( ${+commands[compleat]} )); then
  8. local prefix="${commands[compleat]:h:h}"
  9. local setup="${prefix}/share/compleat-1.0/compleat_setup"
  10. if [[ -f "$setup" ]]; then
  11. if ! bashcompinit >/dev/null 2>&1; then
  12. autoload -U bashcompinit
  13. bashcompinit -i
  14. fi
  15. source "$setup"
  16. fi
  17. fi