@@ -8,22 +8,22 @@ atuin_client_bin_dir: /usr/local/bin
8
8
atuin_client_libc_variant : gnu
9
9
10
10
# # where to store your database, default is your system data directory
11
- atuin_client_db_path : " ~/.local/share/atuin/history.db"
11
+ atuin_client_db_path : ~/.local/share/atuin/history.db
12
12
13
13
# # where to store your encryption key, default is your system data directory
14
- atuin_client_key_path : " ~/.local/share/atuin/key"
14
+ atuin_client_key_path : ~/.local/share/atuin/key
15
15
16
16
# # where to store your auth session token, default is your system data directory
17
- atuin_client_session_path : " ~/.local/share/atuin/session"
17
+ atuin_client_session_path : ~/.local/share/atuin/session
18
18
19
19
# # date format used, either "us" or "uk"
20
- atuin_client_dialect : " uk "
20
+ atuin_client_dialect : uk
21
21
22
22
# # default timezone to use when displaying time
23
23
# # either "l", "local" to use the system's current local timezone, or an offset
24
24
# # from UTC in the format of "<+|->H[H][:M[M][:S[S]]]"
25
25
# # for example: "+9", "-05", "+03:30", "-01:23:45", etc.
26
- atuin_client_timezone : " local"
26
+ atuin_client_timezone : local
27
27
28
28
# # enable or disable automatic sync
29
29
atuin_client_auto_sync : true
@@ -32,20 +32,20 @@ atuin_client_auto_sync: true
32
32
atuin_client_update_check : true
33
33
34
34
# # address of the sync server
35
- atuin_client_sync_address : " https://api.atuin.sh"
35
+ atuin_client_sync_address : https://api.atuin.sh
36
36
37
37
# # how often to sync history. note that this is only triggered when a command
38
38
# # is ran, so sync intervals may well be longer
39
39
# # set it to 0 to sync after every command
40
- atuin_client_sync_frequency : " 10m"
40
+ atuin_client_sync_frequency : 10m
41
41
42
42
# # which search mode to use
43
43
# # possible values: prefix, fulltext, fuzzy, skim
44
- atuin_client_search_mode : " fuzzy"
44
+ atuin_client_search_mode : fuzzy
45
45
46
46
# # which filter mode to use
47
47
# # possible values: global, host, session, directory
48
- atuin_client_filter_mode : " global"
48
+ atuin_client_filter_mode : global
49
49
50
50
# # With workspace filtering enabled, Atuin will filter for commands executed
51
51
# # in any directory within a git repository tree (default: false)
@@ -54,16 +54,16 @@ atuin_client_workspaces: false
54
54
# # which filter mode to use when atuin is invoked from a shell up-key binding
55
55
# # the accepted values are identical to those of "filter_mode"
56
56
# # leave unspecified to use same mode set in "filter_mode"
57
- atuin_client_filter_mode_shell_up_key_binding : " global"
57
+ atuin_client_filter_mode_shell_up_key_binding : global
58
58
59
59
# # which search mode to use when atuin is invoked from a shell up-key binding
60
60
# # the accepted values are identical to those of "search_mode"
61
61
# # leave unspecified to use same mode set in "search_mode"
62
- atuin_client_search_mode_shell_up_key_binding : " fuzzy"
62
+ atuin_client_search_mode_shell_up_key_binding : fuzzy
63
63
64
64
# # which style to use
65
65
# # possible values: auto, full, compact
66
- atuin_client_style : " auto"
66
+ atuin_client_style : auto
67
67
68
68
# # the maximum number of lines the interface should take up
69
69
# # set it to 0 to always go full screen
@@ -78,13 +78,13 @@ atuin_client_show_preview: false
78
78
79
79
# # what to do when the escape key is pressed when searching
80
80
# # possible values: return-original, return-query
81
- atuin_client_exit_mode : " return-original"
81
+ atuin_client_exit_mode : return-original
82
82
83
83
# # possible values: emacs, subl
84
- atuin_client_word_jump_mode : " emacs"
84
+ atuin_client_word_jump_mode : emacs
85
85
86
86
# # characters that count as a part of a word
87
- atuin_client_word_chars : " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
87
+ atuin_client_word_chars : abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
88
88
89
89
# # number of context lines to show when scrolling by pages
90
90
atuin_client_scroll_context_lines : 1
@@ -145,7 +145,7 @@ atuin_client_enter_accept: true
145
145
# # keybinding is defined. If this is set to "emacs", "vim-insert", or
146
146
# # "vim-normal", the startup keymap mode in the Atuin search is forced to be
147
147
# # the specified one.
148
- atuin_client_keymap_mode : " auto"
148
+ atuin_client_keymap_mode : auto
149
149
150
150
# # Cursor style in each keymap mode. If specified, the cursor style is changed
151
151
# # in entering the cursor shape. Available values are "default" and
@@ -176,4 +176,4 @@ atuin_client_common_subcommands: |
176
176
]
177
177
178
178
# Set commands that should be totally stripped and ignored from stats
179
- atuin_client_common_prefix : [" sudo" ]
179
+ atuin_client_common_prefix : [sudo]
0 commit comments