You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/content/posts/hugo-github-pages-starter/index.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ This guide in particular uses a Tailwind CSS theme (ironically called [Tailwind]
28
28
- Clone my [repo](https://github.com/commitconfirmed/hugo-git-pages-starter) into your repo
29
29
- Update the `~/site/hugo.toml` file with your own personal details
30
30
- 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.
32
32
- Create a new folder and `index.md` file to make your own blog post
33
33
- Update your repos Settings/Pages to deploy using Github Actions and create a workflow using the provided `~/.github/workflows/hugo.yml` file
34
34
- 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
204
204
<details>
205
205
<summary>Expand / Collapse</summary>
206
206
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)
208
208
209
209
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.
210
210
@@ -288,7 +288,7 @@ Perform a git commit & push so these files are uploaded to our repository. From
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.
292
292
293
293
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)
294
294
@@ -442,7 +442,7 @@ series = ["Hugo"]
442
442
blog text
443
443
```
444
444
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.
Copy file name to clipboardExpand all lines: site/content/posts/tmux-p10k-for-neteng/index.md
+7-5
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ image = "images/title.png"
17
17
18
18
## Introduction
19
19
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.
21
21
22
22
Repository here https://github.com/commitconfirmed/tmux-p10k-for-neteng/
- In your `~/.zshrc` file, change the ZSH_THEME and set your plugins of choice
50
50
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
52
52
53
53
```sh
54
54
ZSH_THEME="powerlevel10k/powerlevel10k"
@@ -61,7 +61,7 @@ plugins=(
61
61
)
62
62
```
63
63
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
65
65
- Restart zsh with `source ~/.zshrc`, this should now display the powerlevel10k configuration wizard which you can run through with your own personal preferences
66
66
67
67
> 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
98
98
|`Ctrl+Space + 1-9`| Switch to window # |
99
99
|`Ctrl+Space + [`| Switch to scrollback mode, can use VIM bindings here to search, etc. Press Enter twice to exit |
100
100
|`Ctrl+Space + -`| Create a Horizontal Split |
101
-
|`Ctrl+Space + =`| Create a Vertial Split |
101
+
|`Ctrl+Space + =`| Create a Vertical Split |
102
102
|`Alt+Arrow Keys`| Navigate between Split Panes |
103
103
|`Ctrl+Space + d`| Detach TMUX |
104
104
|`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
0 commit comments