Plugins

position ease box interval due
front 2.20 2 1.00 2021-08-08T07:51:48Z

fzf

https://github.com/junegunn/fzf#installation

sudo apt install fzf

https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/fzf

good tutorial

Useful commands:

  1. CTRL + R -> command history
  2. CTRL + T -> search files in current directory
  3. ALT+C -> change directory
  4. kill -9 you can select process to send kill command to
  5. Ctrl + D -> exit
  • After export FZF_COMPLETION_TRIGGER='**'

    context aware fuzzy completions

    1. cd **
    2. sh **
    3. export **
    • Search syntax

      ‘wild: Exact match, return items that include wild. ^music: Prefix-exact-match, return items that start with music. .mp3\(: Suffix-exact-match, return items that end with .mp3. !fire: Inverse-exact-match, return items that do not include fire. !^music: Inverse-prefix-exact-match, return items that do not start with music. !.mp3\): Inverse-suffix-exact-match, return items that do not end with .mp3.