Now, I have this fancy looking command in my vscode and tree. Many thanks to YouTube, Google, GitHub, StackOverflow, and etc. 👻
1) Turn Windows features on or off -> Click “Windows Subsystem for Linux“
2) Install ubuntu from Microsoft Store -> launch -> uname/psw
3) VSCode will suggest you to install Remote-WSL
4) Installing ZSH shell for linux distros
a.Install zsh with your package manager
sudo apt install zsh
b. Make your default shell
chsh -s $(which zsh)
5) Install oh–my-zsh
curl
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
wget
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
6) Install Powerlevel10K theme
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/ powerlevel10k
*[Font link](https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Regular.ttf)*
7) Plugins for autosuggestion and syntax highlighting
a. git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
b. git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
c. Activate the plugin in ~/.zshrc:
plugins=(git autosuggestion zsh-syntax-highlighting)