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.

17 lines
558 B

3 years ago
  1. ## Magic Enter plugin
  2. This plugin makes your enter key magical, by binding commonly used commands to it.
  3. To use it, add `magic-enter` to the plugins array in your zshrc file. You can set the
  4. commands to be run in your .zshrc, before the line containing plugins. If no command
  5. is specified in a git directory, `git status` is executed; in other directories, `ls`.
  6. ```zsh
  7. # defaults
  8. MAGIC_ENTER_GIT_COMMAND='git status -u .'
  9. MAGIC_ENTER_OTHER_COMMAND='ls -lh .'
  10. plugins=(... magic-enter)
  11. ```
  12. **Maintainer:** [@dufferzafar](https://github.com/dufferzafar)