Why?
No reason, this’d be my living documentation and checklist for my future self about:
- what I must install personally
- what I consider to use personally
- checklist to configure after reinstalling OSes
Table of Contents
Initial Install Script
- Windows: https://github.com/nridwan/DevMyWin
- Linux (Archlinux): https://github.com/JaKooLit/Arch-Hyprland/
- Mac: https://github.com/adamisntdead/DevMyMac
Must Install
Generic (Must Install)
- VSCodium
- Must Install Plugins:
- GitLens
- GitGraph
- Flutter
- Prettier
- Batch Rename
- Quick and Simple Text Selection
- VSIX installation
- Must Install Plugins:
- Neovim
- via package manager
- Note: with LazyVim starter config
- Git
- via package manager
- GPG
- via package manager
- ZSH
- via install script
- Note: Linux/Mac only
- Kitty
- via package manager
- Note: Linux/Mac only
- Flutter
- via package manager
- Android Studio
- via package manager on linux
- via installer on mac/windows
- NVS
- via install script
- all nodeJS version installed using this
- PNPM
- via install script
- OpenJDK
- via package manager, multiple version
- switching using scoop (windows)
- switching using archlinux-java (linux)
- switching using JAVA_HOME (mac) - reference: https://medium.com/@devkosal/switching-java-jdk-versions-on-macos-80bc868e686a
- LibreOffice
- via package manager linux (libreoffice-fresh)
- via installer for windows & mac
Windows (Must Install)
- Windows Terminal
- via microsoft store
- Powershell 7
- via installer
- Oh My Posh
- via install script
- Note: ZSH alternatives
- Scoop
- Package manager for windows
- via install script
- Steam
- via installer
Mac (Must Install)
Install when Needed
- VSCodium Extensions:
- Astro
- MDX
- Svelte for VS Code
- Tailwind CSS
- rust-analyzer
- MDX
- Language Support for Java(TM) by Red Hat
- SonarLint
- Jest Runner
- Go
- Flutter Tree
- VSIX Installation
- Godot 4 Mono
- Unity
- Gimp
- Krita
- Audacity
- Blender
- Rust
- Bun
- Go
Config Checklist
1. Powershell 7 Config (Windows)
- use powershell, run
notepad $PROFILE
- paste this:
oh-my-posh --init --shell pwsh --config $env:POSH_THEMES_PATH\robbyrussell.omp.json | Invoke-Expression
Set-PSReadLineOption -HistorySearchCursorMovesToEnd
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward
- explanation:
- first line to activate oh-my-posh with robbyrussel theme
- second line is to acknowledge & end history suggestion when pressing right button
- third and fourth line is to search up/bottom just like zsh
2. GPG Migration
Move old GPG to new machine
- Backup from old machine far before I need it, reference: https://gist.github.com/Killeroid/6361944d0694e474fb94cc42a3b119d1
gpg -a --export > mypubkeys.asc
gpg -a --export-secret-keys > myprivatekeys.asc
gpg --export-ownertrust > otrust.txt
- Copy the exported files to new machine, and run command
gpg --import mypubkeys.asc
gpg --import myprivatekeys.asc
gpg --import-ownertrust otrust.txt
3. .gitconfig
- Main git config:
[credential]
useHttpPath = true
#windows start
[credential "helperselector"]
selected = manager-core
#windows end
[user]
name = MY_NAME
email = MY_EMAIL
signingkey = MY_GPG_ID
[init]
defaultBranch = main
[commit]
gpgsign = true
#windows start
[includeIf "gitdir/i:C:/Users/MYUSERNAME/MYCOMPANYNAME/"]
path = C:/Users/MYUSERNAME/MYCOMPANYNAME/.gitconfig
#windows end
#nix start
[includeIf "gitdir/i:C:/Users/MYUSERNAME/MYCOMPANYNAME/"]
path = C:/Users/MYUSERNAME/MYCOMPANYNAME/.gitconfig
#nix end
[gpg]
program = PATH_TO_GPG #dont forget double backslash for windows
- Sub git config
[user]
name = MY_NAME
email = MY_EMAIL
signingkey = MY_GPG_ID