docs: distinguish between "setup" (noun) and "set up" (verb) in docs

This commit is contained in:
Olaf Alders 2022-03-15 19:32:45 -04:00 committed by Jan De Dobbeleer
parent fd479809da
commit 0f5b10d90e
5 changed files with 8 additions and 8 deletions

View file

@ -8,7 +8,7 @@ When changing the `segment_plastic.go` file, you may need to test your changes a
[Plastic SCM][plastic]. This doc should bring you up to speed with Plastic SCM. [Plastic SCM][plastic]. This doc should bring you up to speed with Plastic SCM.
In the [contributing doc][contributing] there is a section about [dev containers & codespaces][devcontainer]. In the [contributing doc][contributing] there is a section about [dev containers & codespaces][devcontainer].
You can setup Plastic SCM inside these as well. You can set up Plastic SCM inside these as well.
## Server Setup ## Server Setup
@ -87,7 +87,7 @@ sudo apt-get install plasticscm-client-core
### Client configuration ### Client configuration
To connect the client to the server and setup an account run: To connect the client to the server and set up an account run:
```bash ```bash
clconfigureclient clconfigureclient
@ -111,7 +111,7 @@ cm li
## Testing stuff ## Testing stuff
Now to the fun part! The server is automatically setup to host a `default` repo with the branch `/main`. Now to the fun part! The server is automatically set up to host a `default` repo with the branch `/main`.
The Plastic SCM CLI command is: `cm` The Plastic SCM CLI command is: `cm`

View file

@ -8,7 +8,7 @@ import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem"; import TabItem from "@theme/TabItem";
import InstallHomebrew from "./install-homebrew.mdx"; import InstallHomebrew from "./install-homebrew.mdx";
## Setup your terminal ## Set up your terminal
Oh My Posh uses ANSI color codes under the hood, these should work in every terminal, Oh My Posh uses ANSI color codes under the hood, these should work in every terminal,
but you may have to set the environment variable `$TERM` to `xterm-256color` for it to work. but you may have to set the environment variable `$TERM` to `xterm-256color` for it to work.

View file

@ -8,7 +8,7 @@ import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem"; import TabItem from "@theme/TabItem";
import InstallHomebrew from "./install-homebrew.mdx"; import InstallHomebrew from "./install-homebrew.mdx";
## Setup your terminal ## Set up your terminal
As the standard terminal has issues displaying the ANSI characters correctly, we advise using As the standard terminal has issues displaying the ANSI characters correctly, we advise using
[iTerm2][iterm2] or any other modern day MacOS terminal that supports ANSI characters. [iTerm2][iterm2] or any other modern day MacOS terminal that supports ANSI characters.

View file

@ -7,7 +7,7 @@ sidebar_label: ⊞ Windows
import Tabs from "@theme/Tabs"; import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem"; import TabItem from "@theme/TabItem";
## Setup your terminal ## Set up your terminal
While Oh My Posh works on the standard terminal, we advise using the [Windows Terminal][wt]. While Oh My Posh works on the standard terminal, we advise using the [Windows Terminal][wt].

View file

@ -11,8 +11,8 @@ import (
// promptCmd represents the prompt command // promptCmd represents the prompt command
var promptCmd = &cobra.Command{ var promptCmd = &cobra.Command{
Use: "prompt", Use: "prompt",
Short: "Setup the prompt for your shell", Short: "Set up the prompt for your shell",
Long: `Setup the prompt for your shell Long: `Set up the prompt for your shell
Allows to initialize one of the supported shells, or to set the prompt manually for a custom shell.`, Allows to initialize one of the supported shells, or to set the prompt manually for a custom shell.`,
Run: func(cmd *cobra.Command, args []string) {}, Run: func(cmd *cobra.Command, args []string) {},
} }