Skip to content

GyeongHoKim/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

145 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

Linux & macOS

This repo contains the configuration to setup my machines for web development. This is using Chezmoi, the dotfile manager to setup the install.

Supported platforms: Fedora, Debian/Ubuntu, macOS, and Windows 11

export GITHUB_USERNAME=GyeongHoKim
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply $GITHUB_USERNAME

Windows11:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
$env:GITHUB_USERNAME = "GyeongHoKim"
& ([scriptblock]::Create((irm 'https://get.chezmoi.io/ps1'))) init --apply $env:GITHUB_USERNAME

What gets installed

All Platforms (Linux + macOS)

Shell & Terminal:

  • zsh with Oh My Zsh
  • tmux for terminal multiplexing
  • WezTerm (terminal emulator)
  • JetBrains Mono Nerd Font

Editors:

  • Neovim (configured with LazyVim)

Language Runtimes (via mise):

  • Node.js (LTS)
  • Bun (JavaScript runtime and package manager)
  • Python (latest stable)
  • Go (latest stable)
  • Rust (latest stable)

Note: Versions are set to "latest" so each new machine setup installs the current stable versions at that time.

CLI Development Tools:

  • Git + GitHub CLI (gh)
  • AI Coding Agents:
    • OpenCode
    • Claude Code
    • Gemini CLI
    • Qwen CLI
  • Search: ripgrep, fzf, fd-find
  • Build tools: gcc, make, autoconf
  • Package managers: poetry (Python), luarocks (Lua)
  • Task runner: go-task
  • lazygit

Infrastructure Tools:

  • kubectl, helm
  • terraform

Linux Only (Fedora + Debian/Ubuntu)

System:

  • Docker (docker-ce)
  • GNOME Tweaks
  • inotify-tools
  • flatpak
  • podman-compose

GUI Applications (via Flatpak):

  • OBS Studio
  • VLC Media Player
  • Tenacity (audio editor)
  • Obsidian (note-taking)
  • GIMP (image editor)
  • Insomnia (API testing)
  • Foliate (ebook reader)
  • Meld (diff/merge tool)
  • DB Browser for SQLite

Native Packages:

  • VSCodium
  • Brave Browser
  • Blender (3D graphics)

macOS Only

System:

  • Docker Desktop
  • fswatch (file watcher)

GUI Applications (via Homebrew Cask):

  • VSCodium
  • Brave Browser
  • Blender
  • OBS Studio
  • VLC Media Player
  • Obsidian
  • GIMP
  • Insomnia
  • Meld
  • DB Browser for SQLite

How to run

Linux / macOS

export GITHUB_USERNAME=GyeongHoKim
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply $GITHUB_USERNAME

The setup will:

  1. Install Ansible
  2. Run the Ansible playbook to install system packages and mise
  3. Install Oh My Zsh
  4. Configure mise to auto-install language runtimes on first shell login

Windows 11

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
$env:GITHUB_USERNAME = "GyeongHoKim"
& ([scriptblock]::Create((irm 'https://get.chezmoi.io/ps1'))) init --apply $env:GITHUB_USERNAME

Managing Language Versions

After installation, use mise to manage language versions:

# Check installed versions
mise current

# Install different versions
mise use -g node@20
mise use python@3.11

# Per-project versions
cd my-project
mise use node@18  # Creates .tool-versions or mise.toml

About

configuration of gyeongho

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published