- https://dotfiles.github.io/utilities/
- https://github.com/webpro/awesome-dotfiles
- https://github.com/jbernard/dotfiles
https://github.com/ryanoasis/nerd-fonts
https://youtu.be/Xyr_EOmEB_g https://starship.rs/
-
https://github.com/romkatv/powerlevel10k install fonts
https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#manual-font-installation
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
Plugins
zsh-autosuggestions
Install the zsh-autosuggestions plugin:
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
Add the plugin to the ~/.zshrc file:
plugins=(git) plugins=(git zsh-autosuggestions)
After resource the ~/.zshrc file source ~/.zshrc, the zsh-autosuggestions plugin will work.
zsh-syntax-highlighting
Install the zsh-syntax-highlighting plugin:
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
Add the plugin to the ~/.zshrc file:
plugins=(git zsh-autosuggestions) plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
After resource the ~/.zshrc file source ~/.zshrc, the zsh-syntax-highlighting plugin will work.
- Install using PowerShell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
- Add extra download repositories
scoop bucket add extras
scoop bucket add nerd-fonts
scoop bucket add nonportable
- Install portable
scoop install <nerd-font>
- Install non-portable
scoop install grammarly-np
https://github.com/microsoft/terminal
- Install
oh-my-posh
scoop install https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/oh-my-posh.json
- Edit your profile
notepad $PROFILE
- Add the snippet below
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/powershell10k_rainbow.omp.json" | Invoke-Expression
- Reload your shell
. $PROFILE