Skip to content

Commit a3bca60

Browse files
chore: fix typos in posts
1 parent 6f324c1 commit a3bca60

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

site/content/posts/hugo-github-pages-starter/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This guide in particular uses a Tailwind CSS theme (ironically called [Tailwind]
2828
- Clone my [repo](https://github.com/commitconfirmed/hugo-git-pages-starter) into your repo
2929
- Update the `~/site/hugo.toml` file with your own personal details
3030
- Update the `~/site/content/about/index.md` file with your own personal details
31-
- See the `~/site/content/posts/` directory for an example blog bost.
31+
- See the `~/site/content/posts/` directory for an example blog post.
3232
- Create a new folder and `index.md` file to make your own blog post
3333
- Update your repos Settings/Pages to deploy using Github Actions and create a workflow using the provided `~/.github/workflows/hugo.yml` file
3434
- See the Hugo [Documentation](https://gohugo.io/host-and-deploy/host-on-github-pages/) for detailed instructions
@@ -204,7 +204,7 @@ Once you are happy with the setup, perform a git commit & push to save the files
204204
<details>
205205
<summary>Expand / Collapse</summary>
206206

207-
If you would prefer not to install anything at all locally, you can do *all* of your development these days on a machine in the cloud from the comfort of a web brower using [github codespaces](https://github.com/features/codespaces)
207+
If you would prefer not to install anything at all locally, you can do *all* of your development these days on a machine in the cloud from the comfort of a web browser using [github codespaces](https://github.com/features/codespaces)
208208

209209
Note that this is also free, for up to 60 hours a month (as of the time this was written) which should be more than enough unless you are a blogging machine or using codespaces for other projects.
210210

@@ -288,7 +288,7 @@ Perform a git commit & push so these files are uploaded to our repository. From
288288

289289
<img src="./images/hugo-codespace-1.png" alt="Codespaces GUI image">
290290

291-
If everything looks good, click "Create Codespace", which should open up a new browser tab with a web version of Visio Studio Code with your repo ready to go.
291+
If everything looks good, click "Create Codespace", which should open up a new browser tab with a web version of Visual Studio Code with your repo ready to go.
292292

293293
You may see an error on first setup as we haven't installed a theme yet, but we will cover that next. As with the other methods, from the provided terminal enter the site directory `"cd site"` and initialize your site using the `"sudo hugo new site ."` command (you don't need to do this if you've used one of the other methods already)
294294

@@ -442,7 +442,7 @@ series = ["Hugo"]
442442
blog text
443443
```
444444
445-
Once saved, Hugo will again automatically rebuild the site for you and you should see your blog posts, and assosiated tags/categories/series on the front page.
445+
Once saved, Hugo will again automatically rebuild the site for you and you should see your blog posts, and associated tags/categories/series on the front page.
446446
447447
```bash
448448
hugo-1 | Change detected, rebuilding site (#2).

site/content/posts/tmux-p10k-for-neteng/index.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ image = "images/title.png"
1717

1818
## Introduction
1919

20-
This repo expands on the basic tmux shell by moving from bash to zsh, adding the popular [oh-my-zsh](https://github.com/ohmyzsh/ohmyzsh) plugin and, adding the [powerlevel10k](https://github.com/romkatv/powerlevel10k) theme for a speedier and modern looking shell.
20+
This article expands on the basic [tmux](https://github.com/commitconfirmed/tmux-for-neteng) shell by moving from bash to zsh, adding the popular [oh-my-zsh](https://github.com/ohmyzsh/ohmyzsh) plugin and, adding the [powerlevel10k](https://github.com/romkatv/powerlevel10k) theme for a speedier and modern looking shell.
2121

2222
Repository here https://github.com/commitconfirmed/tmux-p10k-for-neteng/
2323

@@ -48,7 +48,7 @@ git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$
4848

4949
- In your `~/.zshrc` file, change the ZSH_THEME and set your plugins of choice
5050

51-
> Builtin plugins available at https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins if you want to further personally customise
51+
> Builtin plugins available at https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins if you want to further personally customize
5252
5353
```sh
5454
ZSH_THEME="powerlevel10k/powerlevel10k"
@@ -61,7 +61,7 @@ plugins=(
6161
)
6262
```
6363

64-
- There are some additional steps depending on your disrto in the [zsh-autocomplete](https://github.com/marlonrichert/zsh-autocomplete) plugin to follow
64+
- There are some additional steps depending on your distribution in the [zsh-autocomplete](https://github.com/marlonrichert/zsh-autocomplete) plugin to follow
6565
- Restart zsh with `source ~/.zshrc`, this should now display the powerlevel10k configuration wizard which you can run through with your own personal preferences
6666

6767
> If you do not like your powerlevel10k look, you can always run the configuration wizard again with `p10k configure`.
@@ -98,7 +98,7 @@ Keybindings I've used as a personal preference, you can change this if you want
9898
| `Ctrl+Space + 1-9` | Switch to window # |
9999
| `Ctrl+Space + [` | Switch to scrollback mode, can use VIM bindings here to search, etc. Press Enter twice to exit |
100100
| `Ctrl+Space + -` | Create a Horizontal Split |
101-
| `Ctrl+Space + =` | Create a Vertial Split |
101+
| `Ctrl+Space + =` | Create a Vertical Split |
102102
| `Alt+Arrow Keys` | Navigate between Split Panes |
103103
| `Ctrl+Space + d` | Detach TMUX |
104104
| `Ctrl+Space + r` | Reload TMUX config |
@@ -109,4 +109,6 @@ If you found this post useful, please show your support by sponsoring or at leas
109109

110110
- https://github.com/ohmyzsh/ohmyzsh
111111
- https://github.com/marlonrichert/zsh-autocomplete
112-
- https://github.com/romkatv/powerlevel10k
112+
- https://github.com/romkatv/powerlevel10k
113+
114+
## Comments

0 commit comments

Comments
 (0)