This repository has been archived on 2024-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
zsh/README.md

33 lines
1.0 KiB
Markdown
Raw Normal View History

2020-06-07 16:09:57 +02:00
# ZSH
My ZSH config
2020-02-12 17:40:45 -06:00
## Setup
- Clone the repository to your home folder
2020-02-12 17:41:59 -06:00
```
2020-06-07 16:09:57 +02:00
git clone --recursive https://github.com/jiriks74/zsh
2020-02-12 17:41:59 -06:00
```
- Link the zshrc file to your home foled (`powerlevel10k` theme)
`ln -s ~/zsh/zshrc ~/.zshrc`
- Or link the zshrc file configured for pure
`ln -s ~/zsh/zshrc.pure ~/.zsh`
2020-06-07 16:09:57 +02:00
## Get Dependancies
### Included in this repository
2020-06-07 16:09:57 +02:00
- zsh-syntax-highlighting - syntax highlighting for ZSH
2020-02-12 17:40:45 -06:00
- zsh-autosuggestions - Suggestions based on your history
2020-06-08 18:57:47 +02:00
- pure - Pure shell look for zsh
2020-06-08 18:58:46 +02:00
### Get this from your distribution's repository
2020-06-08 18:57:47 +02:00
- autojump - Jump to directories with j or jc for child or jo to open in file manager
2020-06-07 16:09:57 +02:00
- zsh - the shell itself
## Set as default
To set zsh as default shell for your user, edit `/etc/passwd` (from `/bin/bash` to `/bin/zsh`)
### Exampe:
- Put your username instead of `user`
From: `user:x:1000:1000::/home/user:/bin/bash`
To: `user:x:1000:1000::/home/user:/bin/zsh`
2020-06-07 16:09:57 +02:00
## What I used
My config is based on Chris Titus's config, `powerlevel10k` theme - old config `pure shell`