diff --git a/atuin-client/config.toml b/atuin-client/config.toml index 13934d46..307a645a 100644 --- a/atuin-client/config.toml +++ b/atuin-client/config.toml @@ -160,13 +160,24 @@ enter_accept = true [stats] ## Set commands where we should consider the subcommand for statistics. Eg, kubectl get vs just kubectl # common_subcommands = [ +# "apt", # "cargo", +# "composer", +# "dnf", +# "docker", # "git", # "go", +# "ip", # "kubectl", -# "npm", # "nix", +# "nmcli", +# "npm", +# "pecl", # "pnpm", +# "podman", +# "port", +# "systemctl", +# "tmux", # "yarn", # ] diff --git a/atuin-client/src/settings.rs b/atuin-client/src/settings.rs index b7dc7f1c..9f2afd04 100644 --- a/atuin-client/src/settings.rs +++ b/atuin-client/src/settings.rs @@ -281,7 +281,25 @@ impl Stats { fn common_subcommands_default() -> Vec { vec![ - "cargo", "composer", "go", "git", "kubectl", "nix", "npm", "pnpm", "yarn", + "apt", + "cargo", + "composer", + "dnf", + "docker", + "git", + "go", + "ip", + "kubectl", + "nix", + "nmcli", + "npm", + "pecl", + "pnpm", + "podman", + "port", + "systemctl", + "tmux", + "yarn", ] .into_iter() .map(String::from)