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

35 lines
843 B
Markdown
Raw Normal View History

2020-02-13 00:40:45 +01:00
# zsh
2020-08-31 15:44:29 +02:00
2020-02-13 00:40:45 +01:00
My ZSH Config
## Setup
2020-08-31 15:44:29 +02:00
2020-02-13 00:41:59 +01:00
```
2020-08-31 15:44:29 +02:00
touch "$HOME/.cache/zshhistory"
2020-08-19 19:34:12 +02:00
#-- Setup Alias in $HOME/zsh/aliasrc
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
2020-08-31 15:44:29 +02:00
echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >> ~/.zshrc
2020-02-13 00:41:59 +01:00
```
2020-08-31 15:44:29 +02:00
## Get Dependencies
- zsh-syntax-highlighting - syntax highlighting for ZSH in standard repos
- autojump - jump to directories with j or jc for child or jo to open in file manager
- zsh-autosuggestions - Suggestions based on your history
2020-08-19 19:34:12 +02:00
### Debian Dependencies
```bash
sudo apt install zsh-syntax-highlighting autojump zsh-autosuggestions
```
### Arch Dependencies
```bash
yay -S zsh-syntax-highlighting autojump zsh-autosuggestions
```
2020-02-13 00:40:45 +01:00
Finish the conversion by changing your user in /etc/passwd to /bin/zsh instead of /bin/bash
2020-08-19 19:34:12 +02:00
or typing `chsh $USER` and entering `/bin/zsh`