Personal OS Setup - App and Config Checklist V1

May 15, 2024
Personal OS Setup - App and Config Checklist V1

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

Must Install

Generic (Must Install)

Windows (Must Install)

Mac (Must Install)

  • Brew
    • Package manager for mac
    • via install script
  • XCode
    • also don’t forget to xcode-select --install

Install when Needed

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

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
© 2024 Mietzen
Developed by Mietzen inspired by Frosti Template ⚡️

Mietzen's Atelier

avatar