aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaldir Pimenta <waldyrious@gmail.com>2026-01-16 19:16:12 +0000
committerGitHub <noreply@github.com>2026-01-16 11:16:12 -0800
commit863853a15871683d8f3020ccbb3d436a33c2fda7 (patch)
tree38d64e700303f32e3328ddc10bb18d9733d922a5
parentdocs: Various improvements to the `atuin import` docs (#3062) (diff)
downloadatuin-863853a15871683d8f3020ccbb3d436a33c2fda7.zip
docs: Disambiguate 'setup' (noun) vs. 'set up' (verb) (#3061)
<!-- Thank you for making a PR! Bug fixes are always welcome, but if you're adding a new feature or changing an existing one, we'd really appreciate if you open an issue, post on the forum, or drop in on Discord --> ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing
-rw-r--r--crates/atuin/src/command/client/account/verify.rs2
-rw-r--r--docs/docs/guide/basic-usage.md2
-rw-r--r--docs/docs/guide/dotfiles.md8
-rw-r--r--docs/docs/guide/installation.md6
-rw-r--r--docs/docs/sync-v2.md2
-rwxr-xr-xinstall.sh6
6 files changed, 13 insertions, 13 deletions
diff --git a/crates/atuin/src/command/client/account/verify.rs b/crates/atuin/src/command/client/account/verify.rs
index 7c707117..1533c283 100644
--- a/crates/atuin/src/command/client/account/verify.rs
+++ b/crates/atuin/src/command/client/account/verify.rs
@@ -36,7 +36,7 @@ pub async fn run(settings: &Settings, token: Option<String>) -> Result<()> {
(false, false) => {
println!(
- "Your Atuin server does not have mail setup. This is not required, though your account cannot be verified. Speak to your admin."
+ "Your Atuin server does not have mail set up. This is not required, though your account cannot be verified. Speak to your admin."
);
}
diff --git a/docs/docs/guide/basic-usage.md b/docs/docs/guide/basic-usage.md
index 14c5864e..ce7f4151 100644
--- a/docs/docs/guide/basic-usage.md
+++ b/docs/docs/guide/basic-usage.md
@@ -1,6 +1,6 @@
# Basic Usage
-Now that you're all setup and running, here's a quick walkthrough of how you can use Atuin best
+Now that you're all set up and running, here's a quick walkthrough of how you can use Atuin best
## What does Atuin record?
diff --git a/docs/docs/guide/dotfiles.md b/docs/docs/guide/dotfiles.md
index 74105e95..79a571ce 100644
--- a/docs/docs/guide/dotfiles.md
+++ b/docs/docs/guide/dotfiles.md
@@ -19,7 +19,7 @@ no longer need to edit your config files manually.
## Required config
-Once Atuin is setup and installed, the following is required in your config file (`~/.config/atuin/config.toml`)
+Once Atuin is set up and installed, the following is required in your config file (`~/.config/atuin/config.toml`)
```
[dotfiles]
@@ -28,7 +28,7 @@ enabled = true
In a later release, this will be enabled by default.
-Note: If you have not yet setup sync v2, please also add
+Note: If you have not yet set up sync v2, please also add
```
[sync]
@@ -131,10 +131,10 @@ atuin dotfiles var list
```
### Syncing and backing up dotfiles
-If you have [setup sync](sync.md), then running
+If you have [set up sync](sync.md), then running
```
atuin sync
```
-will backup your config to the server and sync it across machines.
+will back up your config to the server and sync it across machines.
diff --git a/docs/docs/guide/installation.md b/docs/docs/guide/installation.md
index ac47fe88..5c98f97f 100644
--- a/docs/docs/guide/installation.md
+++ b/docs/docs/guide/installation.md
@@ -14,7 +14,7 @@ then the manual steps below offer much more flexibility.
curl --proto '=https' --tlsv1.2 -LsSf https://setup.atuin.sh | sh
```
-[**Setup sync** - Move on to the next step, or read on to manually install Atuin instead.](sync.md)
+[**Set up sync** - Move on to the next step, or read on to manually install Atuin instead.](sync.md)
## Manual installation
@@ -24,7 +24,7 @@ If you don't wish to use the installer, the manual installation steps are as fol
=== "Cargo"
- It's best to use [rustup](https://rustup.rs/) to get setup with a Rust
+ It's best to use [rustup](https://rustup.rs/) to set up a Rust
toolchain, then you can run:
```shell
@@ -192,7 +192,7 @@ After installing, remember to restart your shell.
echo '[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh' >> ~/.bashrc
```
- Then setup Atuin
+ Then set up Atuin
```shell
echo 'eval "$(atuin init bash)"' >> ~/.bashrc
diff --git a/docs/docs/sync-v2.md b/docs/docs/sync-v2.md
index 9055794d..8821b2f5 100644
--- a/docs/docs/sync-v2.md
+++ b/docs/docs/sync-v2.md
@@ -1,6 +1,6 @@
# Sync v2
-Just installed Atuin? Don't worry about this page, everything should be setup
+Just installed Atuin? Don't worry about this page, everything should be set up
for you.
If you've been using Atuin for a while, you might not be using the best sync. A
diff --git a/install.sh b/install.sh
index 7c63e946..2372d23f 100755
--- a/install.sh
+++ b/install.sh
@@ -35,7 +35,7 @@ elif ! command -v sed > /dev/null; then
fi
-__atuin_install_binary
+__atuin_install_binary
# TODO: Check which shell is in use
# Use of single quotes around $() is intentional here
@@ -73,7 +73,7 @@ cat << EOF
- _______ __ __ _______ __ _ ___ _ __ __ _______ __ __
+ _______ __ __ _______ __ _ ___ _ __ __ _______ __ __
| || | | || _ || | | || | | | | | | || || | | |
|_ _|| |_| || |_| || |_| || |_| | | |_| || _ || | | |
| | | || || || _| | || | | || |_| |
@@ -89,7 +89,7 @@ If you have any issues, please open an issue on GitHub or visit our forum (https
If you love Atuin, please give us a star on GitHub! It really helps ⭐️ https://github.com/atuinsh/atuin
-Please run "atuin register" to get setup with sync, or "atuin login" if you already have an account
+Please run "atuin register" to set up sync, or "atuin login" if you already have an account
Check out Atuin Desktop to build executable runbooks from your shell history - https://github.com/atuinsh/desktop