config: update fonts to ZedMono NF and disable lazygit CI keybinds

This commit is contained in:
2026-01-06 12:01:13 -06:00
parent 7cd672de52
commit f1b0e5599b
2 changed files with 24 additions and 23 deletions
+3 -3
View File
@@ -2,7 +2,7 @@
// Editor Settings // Editor Settings
"editor.defaultFormatter": "esbenp.prettier-vscode", "editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.fontFamily": "Iosevka", "editor.fontFamily": "ZedMono NF",
"editor.inlineSuggest.enabled": true, "editor.inlineSuggest.enabled": true,
"editor.linkedEditing": true, "editor.linkedEditing": true,
"editor.minimap.showSlider": "always", "editor.minimap.showSlider": "always",
@@ -22,7 +22,6 @@
"terminal.integrated.commandsToSkipShell": [ "terminal.integrated.commandsToSkipShell": [
"-workbench.action.quickOpenView" "-workbench.action.quickOpenView"
], ],
"terminal.integrated.fontFamily": "Iosevka Nerd Font Mono",
"terminal.integrated.enablePersistentSessions": false, "terminal.integrated.enablePersistentSessions": false,
"terminal.integrated.defaultProfile.windows": "PowerShell", "terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.defaultProfile.linux": "fish (2)", "terminal.integrated.defaultProfile.linux": "fish (2)",
@@ -337,5 +336,6 @@
"[svelte]": { "[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode" "editor.defaultFormatter": "svelte.svelte-vscode"
}, },
"claudeCode.preferredLocation": "panel" "claudeCode.preferredLocation": "panel",
"terminal.integrated.fontLigatures.enabled": true
} }
+21 -20
View File
@@ -95,26 +95,27 @@ refresher:
refreshInterval: 2 # Fast refresh for file changes refreshInterval: 2 # Fast refresh for file changes
fetchInterval: 60 # Fetch from remote every 60s fetchInterval: 60 # Fetch from remote every 60s
customCommands: customCommands:
- key: "a" # Disabled 'a' and 'A' keybinds
context: "commits" # - key: "a"
description: "Show CI status for commit" # context: "commits"
command: 'bash -c "gh run list --commit {{.SelectedCommit.Sha}} --json conclusion,status,name,updatedAt --jq ''if length == 0 then \"No CI runs found\" else .[] | \"\\(.name): \\(if .conclusion == \"success\" then \"✓\" elif .conclusion == \"failure\" then \"✗\" elif .status == \"in_progress\" then \"⏳\" else \"?\" end) \\(.conclusion // .status)\" end''"' # description: "Show CI status for commit"
loadingText: "Checking CI status..." # command: 'bash -c "gh run list --commit {{.SelectedCommit.Sha}} --json conclusion,status,name,updatedAt --jq ''if length == 0 then \"No CI runs found\" else .[] | \"\\(.name): \\(if .conclusion == \"success\" then \"✓\" elif .conclusion == \"failure\" then \"✗\" elif .status == \"in_progress\" then \"⏳\" else \"?\" end) \\(.conclusion // .status)\" end''"'
- key: "A" # loadingText: "Checking CI status..."
context: "commits" # - key: "A"
description: "View CI logs for commit" # context: "commits"
command: 'bash -c "RUN_ID=$(gh run list --commit {{.SelectedCommit.Sha}} --json databaseId -q ''.[0].databaseId''); if [ -n \"$RUN_ID\" ]; then gh run view $RUN_ID --log; else echo \"No CI runs found for this commit\"; fi"' # description: "View CI logs for commit"
loadingText: "Loading CI logs..." # command: 'bash -c "RUN_ID=$(gh run list --commit {{.SelectedCommit.Sha}} --json databaseId -q ''.[0].databaseId''); if [ -n \"$RUN_ID\" ]; then gh run view $RUN_ID --log; else echo \"No CI runs found for this commit\"; fi"'
- key: "a" # loadingText: "Loading CI logs..."
context: "localBranches" # - key: "a"
description: "Show CI status for branch" # context: "localBranches"
command: 'bash -c "gh run list --branch {{.SelectedLocalBranch.Name}} -L 1 --json conclusion,status,name,updatedAt --jq ''if length == 0 then \"No CI runs for this branch\" else .[0] | \"Latest: \\(.name) - \\(if .conclusion == \"success\" then \"✓ Passed\" elif .conclusion == \"failure\" then \"✗ Failed\" elif .status == \"in_progress\" then \"⏳ Running\" else .status end) (\\(.updatedAt))\" end''"' # description: "Show CI status for branch"
loadingText: "Checking CI status..." # command: 'bash -c "gh run list --branch {{.SelectedLocalBranch.Name}} -L 1 --json conclusion,status,name,updatedAt --jq ''if length == 0 then \"No CI runs for this branch\" else .[0] | \"Latest: \\(.name) - \\(if .conclusion == \"success\" then \"✓ Passed\" elif .conclusion == \"failure\" then \"✗ Failed\" elif .status == \"in_progress\" then \"⏳ Running\" else .status end) (\\(.updatedAt))\" end''"'
- key: "A" # loadingText: "Checking CI status..."
context: "localBranches" # - key: "A"
description: "View latest CI run for branch" # context: "localBranches"
command: 'bash -c "RUN_ID=$(gh run list --branch {{.SelectedLocalBranch.Name}} -L 1 --json databaseId -q ''.[0].databaseId''); if [ -n \"$RUN_ID\" ]; then gh run view $RUN_ID --log; else echo \"No CI runs found for this branch\"; fi"' # description: "View latest CI run for branch"
loadingText: "Loading CI logs..." # command: 'bash -c "RUN_ID=$(gh run list --branch {{.SelectedLocalBranch.Name}} -L 1 --json databaseId -q ''.[0].databaseId''); if [ -n \"$RUN_ID\" ]; then gh run view $RUN_ID --log; else echo \"No CI runs found for this branch\"; fi"'
# loadingText: "Loading CI logs..."
- key: "w" - key: "w"
context: "files" context: "files"
description: "Commit staged changes without pre-commit hooks" description: "Commit staged changes without pre-commit hooks"