Make sure to update the list of available packages
sudo apt update
Install git
sudo apt install git
To clone this repository, make sure you have generated an SSH key,
ssh-keygen -t ed25519 -C "[email protected]"
and added it in your github settings.
Now clone this repository into ~/.local/share/my-linux-setup
.
- ALT+Space: Window menu
- Shift+Alt+1: New Chrome window
- Shift+Alt+2: New Wezterm window
- Shift+F11: Toggle full-screen
The following installs the latest version of node-20.x and makes it the global default:
mise use -g node@20
The following installs the latest LTS version of node and makes it the global default:
mise use -g node@lts
The following installs the latest version of python-3.11.x and makes it the global default:
mise use -g [email protected]
mise use -g [email protected]
Remember to set your git credentials:
git config --global user.name "Jan Marthedal Rasmussen"
git config --global user.email "[email protected]"