- Fast: it's fast – really really fast! 🚀
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ========================================= | |
| # 🌟 Advanced Zsh Configuration by A.Z.M. Arif | |
| # ========================================= | |
| # --- Basic Environment Settings --- | |
| export ZSH="$HOME/.oh-my-zsh" | |
| export EDITOR="nvim" | |
| export TERMINAL="kitty" | |
| export LANG="en_US.UTF-8" | |
| export LC_ALL="en_US.UTF-8" |
Bash (Bourne Again Shell) is the default command-line shell on many distributions. Zsh (Z Shell) is a powerful shell that operates as both an interactive shell and as a scripting language interpreter.
sudo apt install zsh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.config/starship.toml | |
| # NOTE: | |
| # Install font awesome for better effect, if not working i guess try install some emojis, that would be helpful. | |
| add_newline = true | |
| [character] | |
| success_symbol = "[➟](bold blue) " |
