]> git.netwichtig.de Git - user/henk/vcsh/zsh.git/blob - .zsh_taskwarrior
customize fzf: use tmux and fdfind
[user/henk/vcsh/zsh.git] / .zsh_taskwarrior
1 ### BEGIN task auto-completion ###
2 fpath=($fpath /usr/local/share/doc/task/scripts/zsh)
3 autoload -Uz compinit
4 compinit -i
5
6 # OPTIONAL
7 # be verbose, i.e. show descriptions
8 zstyle ':completion:*' verbose yes
9 zstyle ':completion:*:descriptions' format '%U%B%d%b%u'
10
11 # group by tag names
12 zstyle ':completion:*' group-name ''
13
14 # OPTIONAL
15 # colors
16 autoload colors && colors
17
18 # The magic works as follows:
19 # * (#b) activates the use of brackets within regular expressions
20 # * the part to the next = character is a regular expression to be matched
21 # * color codes are separated with = characters
22 # * the first code is the default color
23 # * the other codes define the colors of the 1st, 2nd, etc. pair of brackets
24 # (See http://zshwiki.org/home/examples/compsys/colors for a detailed description.)
25
26 # You can use zstyle to configure the completion behaviour.
27 # Here is an example of adding colors to the list of suggestions:
28
29 # zstyle ':completion:*:*:task:*:arguments' list-colors "=(#b) #([^-]#)*=$color[cyan]=$color[bold];$color[blue]"
30 # zstyle ':completion:*:*:task:*:default' list-colors "=(#b) #([^-]#)*=$color[cyan]=$color[green]"
31 # zstyle ':completion:*:*:task:*:values' list-colors "=(#b) #([^-]#)*=$color[cyan]=$color[bold];$color[red]"
32 # zstyle ':completion:*:*:task:*:commands' list-colors "=(#b) #([^-]#)*=$color[cyan]=$color[yellow]"
33
34 ### END task auto-completion ###