Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dot_config/ghostty/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# MesloLGM Nerd Font — matches Neovim (have_nerd_font), oh-my-posh, and other terminals.
# Install: oh-my-posh font install Meslo, or brew install --cask font-meslo-lg-nerd-font
font-family = "MesloLGM Nerd Font"
font-size = 12
1 change: 1 addition & 0 deletions dot_config/mise/config.toml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ trusted_config_paths = [
[tools]
bun = "1.3.13"
python = "3.13.0"
vale = "latest"
53 changes: 53 additions & 0 deletions dot_config/mise/mise.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions dot_config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,18 @@ P.S. You can delete this when you're done too. It's your config now! :)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '

local path_sep = vim.fn.has 'win32' == 1 and ';' or ':'

local function prepend_path(dir)
if vim.fn.isdirectory(dir) == 1 and not string.find(vim.env.PATH or '', dir, 1, true) then
vim.env.PATH = dir .. path_sep .. (vim.env.PATH or '')
end
end

if vim.fn.has 'win32' == 1 then
vim.env.GIT_SSH_COMMAND = 'C:/Windows/System32/OpenSSH/ssh.exe -oBatchMode=yes'

local nvim_bin = vim.fn.stdpath('config') .. '/bin'
if vim.fn.isdirectory(nvim_bin) == 1 and not string.find(vim.env.PATH or '', nvim_bin, 1, true) then
vim.env.PATH = nvim_bin .. ';' .. (vim.env.PATH or '')
end
prepend_path(vim.fn.stdpath('config') .. '/bin')

local local_app_data = vim.env.LOCALAPPDATA
if local_app_data and local_app_data ~= '' then
Expand All @@ -112,11 +117,12 @@ if vim.fn.has 'win32' == 1 then
table.insert(mise_dirs, local_app_data .. '/mise/shims')

for _, dir in ipairs(mise_dirs) do
if vim.fn.isdirectory(dir) == 1 and not string.find(vim.env.PATH or '', dir, 1, true) then
vim.env.PATH = dir .. ';' .. (vim.env.PATH or '')
end
prepend_path(dir)
end
end
else
-- GUI/IDE launches often skip shell profile hooks; mise shims expose global tools (e.g. vale).
prepend_path(vim.fn.expand '~/.local/share/mise/shims')
end

-- Nerd Font icons (nvim-tree devicons, Lazy UI, statusline). Requires a Nerd Font
Expand Down
2 changes: 1 addition & 1 deletion dot_config/oh-my-posh/spaceship-custom.omp.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
{
"type": "java",
"style": "plain",
"foreground": "#4063D8",
"foreground": "#ED8B00",
"template": "\ue738 <#ffffff>java</> {{ .Full }} ",
"options": {
"cache_duration": "5m"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,8 @@
(?i)\bbooleans\b
(?i)\bshuffleable\b
(?i)\bgithub\b
(?i)\basdf\b
(?i)\bIntellij\b
(?i)\bproxying\b
(?i)\bmiddleware\b
(?i)\bdialogs\b
1 change: 1 addition & 0 deletions dot_gitignore_global
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,5 @@ tags
# Persistent undo
[._]*.un~

.agents-code-review/
**/.claude/settings.local.json
1 change: 1 addition & 0 deletions dot_tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ set-option -g focus-events on
set-option -g renumber-windows on
set-option -g set-clipboard on
set-option -g allow-rename off
set-window-option -g automatic-rename off
set-option -g set-titles on
set-option -g set-titles-string "#{session_name}:#{window_name}"
set-option -sg escape-time 0
Expand Down
34 changes: 34 additions & 0 deletions mise.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions windows/backup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ The export script currently captures these targets when present:
(`Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1`)
- Windows Terminal settings (`settings.json` for stable/preview packages)
- VS Code user settings and keybindings
- Cursor user settings and keybindings
- `winget` package export (`windows/backup/winget-packages.json`)

## Notes
Expand Down
8 changes: 8 additions & 0 deletions windows/backup/export.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ $targets = @(
@{
Source = Join-Path $env:APPDATA "Code\User\keybindings.json"
Destination = Join-Path $repoRootPath "windows\vscode\keybindings.json"
},
@{
Source = Join-Path $env:APPDATA "Cursor\User\settings.json"
Destination = Join-Path $repoRootPath "windows\cursor\settings.json"
},
@{
Source = Join-Path $env:APPDATA "Cursor\User\keybindings.json"
Destination = Join-Path $repoRootPath "windows\cursor\keybindings.json"
}
)

Expand Down
5 changes: 5 additions & 0 deletions windows/cursor/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"workbench.colorTheme": "Default Dark Modern",
"terminal.integrated.fontFamily": "MesloLGM Nerd Font",
"terminal.integrated.fontSize": 12
}
7 changes: 6 additions & 1 deletion windows/terminal/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@
],
"profiles":
{
"defaults": {},
"defaults": {
"font": {
"face": "MesloLGM Nerd Font",
"size": 12
}
},
"list":
[
{
Expand Down
4 changes: 3 additions & 1 deletion windows/vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"workbench.colorTheme": "Default Dark Modern"
"workbench.colorTheme": "Default Dark Modern",
"terminal.integrated.fontFamily": "MesloLGM Nerd Font",
"terminal.integrated.fontSize": 12
}
Loading