├── .github └── FUNDING.yml └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: https://www.paypal.com/paypalme/snapseven 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # style-ubuntu-terminal 2 | 3 | ![image](https://user-images.githubusercontent.com/101937929/230771726-9eb8fb60-510a-459d-9bc3-be6accb3f59e.png) 4 | 5 | 6 | * Update Ubuntu box 7 | 8 | ```sudo apt update``` 9 | 10 | ```sudo apt upgrade``` 11 | 12 | > _**Note**: If you already have installed Git and cURL, you can skip next 2 steps._ 13 | 14 | * Installing cURL 15 | 16 | ```sudo apt install curl``` 17 | 18 | * Installing Git 19 | 20 | ```sudo apt install git-all``` 21 | 22 | 23 | * [Install zsh](https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH) 24 | * [Install oh-my-zsh](https://ohmyz.sh/#install) 25 | * [Install pl10k](https://github.com/romkatv/powerlevel10k) 26 | * [Install Dracula theme](https://draculatheme.com/gnome-terminal) 27 | * [Install Autosuggestions](https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md) 28 | * [Install Syntax Highlighting](https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/INSTALL.md) 29 | --------------------------------------------------------------------------------