diff --git a/home/.managed/cursor/settings.linux.json b/home/.managed/cursor/settings.linux.json index 03f81e3..1b6584c 100755 --- a/home/.managed/cursor/settings.linux.json +++ b/home/.managed/cursor/settings.linux.json @@ -2,7 +2,7 @@ // Editor Settings "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, - "editor.fontFamily": "Iosevka", + "editor.fontFamily": "ZedMono NF", "editor.inlineSuggest.enabled": true, "editor.linkedEditing": true, "editor.minimap.showSlider": "always", @@ -22,7 +22,6 @@ "terminal.integrated.commandsToSkipShell": [ "-workbench.action.quickOpenView" ], - "terminal.integrated.fontFamily": "Iosevka Nerd Font Mono", "terminal.integrated.enablePersistentSessions": false, "terminal.integrated.defaultProfile.windows": "PowerShell", "terminal.integrated.defaultProfile.linux": "fish (2)", @@ -337,5 +336,6 @@ "[svelte]": { "editor.defaultFormatter": "svelte.svelte-vscode" }, - "claudeCode.preferredLocation": "panel" + "claudeCode.preferredLocation": "panel", + "terminal.integrated.fontLigatures.enabled": true } diff --git a/home/.managed/lazygit/config.yml b/home/.managed/lazygit/config.yml index be8a90a..494322a 100755 --- a/home/.managed/lazygit/config.yml +++ b/home/.managed/lazygit/config.yml @@ -95,26 +95,27 @@ refresher: refreshInterval: 2 # Fast refresh for file changes fetchInterval: 60 # Fetch from remote every 60s customCommands: - - key: "a" - context: "commits" - description: "Show CI status for commit" - 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''"' - loadingText: "Checking CI status..." - - key: "A" - context: "commits" - description: "View CI logs for commit" - 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"' - loadingText: "Loading CI logs..." - - key: "a" - context: "localBranches" - description: "Show CI status for branch" - 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''"' - loadingText: "Checking CI status..." - - key: "A" - context: "localBranches" - description: "View latest CI run for branch" - 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..." + # Disabled 'a' and 'A' keybinds + # - key: "a" + # context: "commits" + # description: "Show CI status for commit" + # 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''"' + # loadingText: "Checking CI status..." + # - key: "A" + # context: "commits" + # description: "View CI logs for commit" + # 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"' + # loadingText: "Loading CI logs..." + # - key: "a" + # context: "localBranches" + # description: "Show CI status for branch" + # 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''"' + # loadingText: "Checking CI status..." + # - key: "A" + # context: "localBranches" + # description: "View latest CI run for branch" + # 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" context: "files" description: "Commit staged changes without pre-commit hooks"