blob: 4be8f07e90a93187dfd468f8b619c7a27915bf8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
OpenBSD - How to Setup ZSH Shell
doas pkg_add zsh
chsh -s zsh
which zsh
doas nano /etc/passwd
user:*:1000:1000:Firstname Lastname:/home/user:/usr/local/bin/zsh
--exit
doas pkg_add wget git
wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
sh install.sh
source ~/.zshrc
|