No description
| .p10k.zsh | ||
| .zshrc | ||
| install.sh | ||
| README.md | ||
Zsh Config
Personal Zsh configuration and installer for a ready-to-use terminal setup.
The installer sets up:
- oh-my-zsh
- zsh-autosuggestions
- zsh-syntax-highlighting
- fzf-tab
- powerlevel10k
- Symlinks for
.zshrcand.p10k.zsh
Requirements
Install git, wget, zsh, and fzf before running the installer. curl is optional.
Install
Run the installer directly with sh.
Using curl:
sh -c "$(curl -fsSL https://git.vertsineu.top/vertsineu/zsh-config/raw/branch/main/install.sh)"
Using wget:
sh -c "$(wget -qO- https://git.vertsineu.top/vertsineu/zsh-config/raw/branch/main/install.sh)"
What It Does
The install script will:
- Check required dependencies.
- Install or update oh-my-zsh.
- Install Zsh plugins.
- Install the powerlevel10k theme.
- Clone this repository to
~/.zsh-config. - Link
.zshrcand.p10k.zshinto your home directory. - Try to set Zsh as your default shell.
Existing .zshrc or .p10k.zsh files are backed up before being replaced.
After Installation
Open a new terminal, or start Zsh manually:
exec zsh
If changing the default shell fails, run this manually:
chsh -s "$(command -v zsh)"
Update
Re-run the same install command to update oh-my-zsh, plugins, themes, and Zsh config files.