Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.22 KB

README.md

File metadata and controls

61 lines (46 loc) · 1.22 KB

My Linux Setup

Prerequisites

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.

Key bindings

  • ALT+Space: Window menu
  • Shift+Alt+1: New Chrome window
  • Shift+Alt+2: New Wezterm window
  • Shift+F11: Toggle full-screen

Mise

Node.js

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

Python

The following installs the latest version of python-3.11.x and makes it the global default:

mise use -g [email protected]

Yarn

mise use -g [email protected]

Post install

Remember to set your git credentials:

git config --global user.name "Jan Marthedal Rasmussen"
git config --global user.email "[email protected]"