Saturday, May 18, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 1408  / 2 Years ago, tue, may 10, 2022, 6:28:21

I'm new in Ubuntu or Linux in general. I just switched from Windows to Linux to keep my work here. Actually working as web developer.


I use Git commands a lot, and when I clone a repo, I don't get that good looking terminal like I had with Git Bash on Windows, like giving me branch name when I'm inside a folder, some autosuggestions/autocomplete...


I'm looking for another terminal program, like hyperTerminal or the one that comes with Manjaro.


More From » git

 Answers
6

enter image description here
https://github.com/HenzelMoras/myconfig


usding zsh shell with .zshrc which allows autocompletiion, suggestion extra using oh-my-zsh https://github.com/ohmyzsh/ohmyzsh


install if not present


sudo apt install zsh

change default shell to zsh


chsh -s $(which zsh)

install oh-my-zsh


sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

then edit .zshrc file u can refer my config file settings


nvim ~/.zshrc


source the file


source ~/.zshrc

tmux for multiple split panels and windows


sudo apt install tmux

then Neovim 0.5 to to make terminal editor just like an idle


u can refer my dot files for examples


[#1300] Tuesday, May 10, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
tialmes

Total Points: 14
Total Questions: 108
Total Answers: 102

Location: Oman
Member since Thu, Jun 16, 2022
2 Years ago
;