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