Fixed some not working markdown and other stuff - everyone learns how to make proper README

This commit is contained in:
Jiří Štefka 2020-10-09 21:12:41 +02:00
parent 6c1cf890da
commit 44c8a0b731

@ -3,15 +3,23 @@ My ZSH config
## Setup ## Setup
- Clone the repository to your home folder - Clone the repository to your home folder
```git clone --recursive https://github.com/jiriks74/zsh``` ```
git clone --recursive https://github.com/jiriks74/zsh
```
### `powerlevel10k` theme ### `powerlevel10k` theme
- Link the `zsh` file to your home folder as `.zshrc` - Link the `zsh` file to your home folder as `.zshrc`
```ln -s ~/zsh/zshrc ~/.zshrc``` ```
ln -s ~/zsh/zshrc ~/.zshrc
```
- Set the `powerlevel10k` theme the way you like it - Set the `powerlevel10k` theme the way you like it
```p10k config``` ```
p10k config
```
### `pure` shell theme ### `pure` shell theme
- Link the `zsh.pure` file to your home folder as `.zshrc` - Link the `zsh.pure` file to your home folder as `.zshrc`
```ln -s ~/zsh/zshrc.pure ~/.zsh``` ```
ln -s ~/zsh/zshrc.pure ~/.zsh
```
## Get Dependancies ## Get Dependancies
### Included in this repository ### Included in this repository
@ -33,8 +41,9 @@ To set zsh as default shell for your user, edit `/etc/passwd` (from `/bin/bash`
#### Modifying `/etc/passwd` #### Modifying `/etc/passwd`
* Find line containing your username * Find line containing your username
* Put your username instead of `user` * Put your username instead of `user`
From: `user:x:1000:1000::/home/user:/bin/bash` From: `user:x:1000:1000::/home/user:/bin/bash`
To: `user:x:1000:1000::/home/user:/bin/zsh` To: `user:x:1000:1000::/home/user:/bin/zsh`
## What I used ## What I used
My config is based on Chris Titus's config, `powerlevel10k` theme - old config `pure` My config is based on Chris Titus's config, `powerlevel10k` theme and `pure`