How I setup Linux for development
Next generate ssh keys to distribute.
If you need access to multiple git accounts, you could generate separate git keys for each and create a git config. Create a config
file in your ~/.ssh
folder, for example -
Finally! To clone a repo and use the personal key you would use the following format -
When you first launch , I ignore the suggestion to automatically set up the zshrc file and manually change it later. I then git clone all the plugins in one folder and set up my zshrc file as follows -
Install Apps
I use apt to install almost all my apps, which include -
• obsidian - note taking
• nordvpn - vpn
• nordpass - password manager
• slack - communication
• visual studio code - development
• spotify - music
• docker - development
• bazel - development
Linux ricing -
Finally I customize the look and feel of ubuntu. The technical term for this is called "ricing". Check out r/unixporn for some cool Linux rices. Here are a couple of my rices, with varying themes :)
The themes I have used for the above rice are the rose pine dawn theme (which is also the theme for this website) and the catpuccin mocha theme. Both have support for theming multiple softwares and apps! Check out their websites to learn more.
How to streamline/make this process quicker
If you’ve ever set up a Linux system, you may have noticed that most application configuration files are stored in hidden files, commonly referred to as "dotfiles." For instance, Git uses the .gitconfig
file, Vim relies on .vimrc
, and Zsh utilizes .zshrc
, among others.
One great way to manage your dotfiles is by pushing them to a GitHub repository. To streamline the setup process even further, you can create installation scripts that automate the installation of your preferred tools and customizations. This means you can transform the appearance of your system and configure your development environment with just a single command. For inspiration, check out r/unixporn, where you’ll find countless examples of stunning setups.
By organizing your dotfiles and crafting effective install scripts, you can ensure that you’ll never have to set up your development environment from scratch again!