2025-03-20

This commit is contained in:
2025-03-20 10:00:01 -04:00
parent fc94dfb564
commit 2cfcf52ae8
4 changed files with 13 additions and 8 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ cursor-style = underline
shell-integration-features = no-cursor shell-integration-features = no-cursor
adjust-cursor-thickness = 4 adjust-cursor-thickness = 4
font-size = 13 font-size = 14
font-family = Rec Mono Linear font-family = Rec Mono Linear
font-thicken = true font-thicken = true
selection-invert-fg-bg = true selection-invert-fg-bg = true
+7 -1
View File
@@ -204,7 +204,7 @@
} }
}, },
{ {
"context": "Editor && mode == full && edit_prediction", "context": "Editor && edit_prediction",
"use_key_equivalents": true, "use_key_equivalents": true,
"bindings": { "bindings": {
"tab": "editor::AcceptEditPrediction", "tab": "editor::AcceptEditPrediction",
@@ -213,6 +213,12 @@
"ctrl-cmd-right": "editor::AcceptPartialEditPrediction" "ctrl-cmd-right": "editor::AcceptPartialEditPrediction"
} }
}, },
{
"context": "Editor && edit_prediction_conflict",
"bindings": {
"alt-tab": "editor::AcceptEditPrediction"
}
},
{ {
"context": "Editor && !edit_prediction", "context": "Editor && !edit_prediction",
"use_key_equivalents": true, "use_key_equivalents": true,
+5 -5
View File
@@ -20,10 +20,10 @@
}, },
"edit_predictions": { "edit_predictions": {
"disabled_globs": [".md"], "disabled_globs": [".md"],
"mode": "subtle" "mode": "eager"
}, },
"features": { "features": {
"edit_prediction_provider": "copilot" "edit_prediction_provider": "zed"
}, },
"collaboration_panel": { "collaboration_panel": {
"button": false "button": false
@@ -37,8 +37,8 @@
}, },
"theme": { "theme": {
"mode": "system", "mode": "system",
"light": "One Light", "light": "Github Light",
"dark": "Gruvbox Dark" "dark": "Github Dark Dimmed"
}, },
"scrollbar": { "scrollbar": {
"show": "never" "show": "never"
@@ -46,7 +46,7 @@
"cursor_shape": "underline", "cursor_shape": "underline",
"scroll_beyond_last_line": "vertical_scroll_margin", "scroll_beyond_last_line": "vertical_scroll_margin",
"vertical_scroll_margin": 20, "vertical_scroll_margin": 20,
"ui_font_family": "SF Mono", "ui_font_family": "Rec Mono Casual",
"ui_font_features": {}, "ui_font_features": {},
"ui_font_size": 15, "ui_font_size": 15,
"buffer_font_family": "Rec Mono Linear", "buffer_font_family": "Rec Mono Linear",
-1
View File
@@ -5,7 +5,6 @@ alias cd="z"
# developer stuff # developer stuff
alias nv="open -a Nova" alias nv="open -a Nova"
alias code="codium" alias code="codium"
alias runx="npx concurrently \"serverless offline\" \"nx dev frontend\""
# git # git
alias ptob="gh pr create -B beta" alias ptob="gh pr create -B beta"