Skip to content

Commit

Permalink
Group settings and clearify wording
Browse files Browse the repository at this point in the history
This groups the relevant settings together, and it also clearifies the wording

Less hustle looking for the right setting now
  • Loading branch information
ShalokShalom authored Dec 15, 2024
1 parent cb57053 commit 5f2e92d
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions crates/atuin-client/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,25 @@
## set it to 0 to sync after every command
# sync_frequency = "10m"

## which search mode to use
## which search mode to use when atuin is invoked by the "search" flag
## possible values: prefix, fulltext, fuzzy, skim
# search_mode = "fuzzy"

## which filter mode to use by default
## which search mode to use when atuin is invoked from a shell up-key binding
## the accepted values are identical to those of "search_mode"
## leave unspecified to use same mode set in "search_mode"
# search_mode_shell_up_key_binding = "fuzzy"

## which filter mode to use when atuin is invoked by the "search" flag
## possible values: "global", "host", "session", "directory", "workspace"
## consider using search.filters to customize the enablement and order of filter modes
# filter_mode = "global"

## which filter mode to use when atuin is invoked from a shell up-key binding
## the accepted values are identical to those of "filter_mode"
## leave unspecified to use same mode set in "filter_mode"
# filter_mode_shell_up_key_binding = "global"

## With workspace filtering enabled, Atuin will filter for commands executed
## in any directory within a git repository tree (default: false).
##
Expand All @@ -53,17 +63,7 @@
## set search.filters to include "workspace" before other filter modes.
# workspaces = false

## which filter mode to use when atuin is invoked from a shell up-key binding
## the accepted values are identical to those of "filter_mode"
## leave unspecified to use same mode set in "filter_mode"
# filter_mode_shell_up_key_binding = "global"

## which search mode to use when atuin is invoked from a shell up-key binding
## the accepted values are identical to those of "search_mode"
## leave unspecified to use same mode set in "search_mode"
# search_mode_shell_up_key_binding = "fuzzy"

## which style to use
## which display style to use
## possible values: auto, full, compact
# style = "auto"

Expand Down

0 comments on commit 5f2e92d

Please sign in to comment.