]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/zsh-navigation-tools/.config/znt/n-aliases.conf
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / zsh-navigation-tools / .config / znt / n-aliases.conf
1 # How should be current element of the list drawn. Possible values: reverse,
2 # underline.
3 # On Linux virtual terminal this will be enforced to reverse (because of poor
4 # underline support on that terminal). The same for screen/tmux.
5 local active_text=reverse
6
7
8
9
10
11
12 #
13 # Zshrc integration. All below variables can
14 # be set in zshrc and will have precedence
15 # over config files
16 #
17
18 # 1. znt_aliases_active_text
19 active_text=${znt_aliases_active_text:-$active_text}
20
21 # 2. znt_aliases_nlist_coloring_pattern
22 NLIST_COLORING_PATTERN=${znt_aliases_nlist_coloring_pattern:-$NLIST_COLORING_PATTERN}
23
24 # 3. znt_aliases_nlist_coloring_color
25 NLIST_COLORING_COLOR=${znt_aliases_nlist_coloring_color:-$NLIST_COLORING_COLOR}
26
27 # 4. znt_aliases_nlist_coloring_match_multiple
28 NLIST_COLORING_MATCH_MULTIPLE=${znt_aliases_nlist_coloring_match_multiple:-$NLIST_COLORING_MATCH_MULTIPLE}
29
30 # 5. znt_aliases_keywords (array)
31 if (( ${+znt_aliases_keywords} )); then
32     keywords=( "${znt_aliases_keywords[@]}" )
33 fi