2025-03-19

This commit is contained in:
2025-03-19 10:00:01 -04:00
parent 1789145f3b
commit fc94dfb564
3 changed files with 9 additions and 11 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
theme = dark:catppuccin-mocha,light:AtomOneLight theme = dark:GruvboxDarkHard,light:AtomOneLight
cursor-style = underline cursor-style = underline
shell-integration-features = no-cursor shell-integration-features = no-cursor
@@ -14,5 +14,5 @@ window-width = 100
window-padding-x = 5 window-padding-x = 5
window-padding-y = 5 window-padding-y = 5
window-padding-balance = true window-padding-balance = true
background-opacity = 0.9 background-opacity = 0.95
background-blur = true background-blur = true
+1 -6
View File
@@ -207,6 +207,7 @@
"context": "Editor && mode == full && edit_prediction", "context": "Editor && mode == full && edit_prediction",
"use_key_equivalents": true, "use_key_equivalents": true,
"bindings": { "bindings": {
"tab": "editor::AcceptEditPrediction",
"alt-tab": "editor::NextEditPrediction", "alt-tab": "editor::NextEditPrediction",
"alt-shift-tab": "editor::PreviousEditPrediction", "alt-shift-tab": "editor::PreviousEditPrediction",
"ctrl-cmd-right": "editor::AcceptPartialEditPrediction" "ctrl-cmd-right": "editor::AcceptPartialEditPrediction"
@@ -544,12 +545,6 @@
"tab": "editor::ConfirmCompletion" "tab": "editor::ConfirmCompletion"
} }
}, },
{
"context": "Editor && edit_prediction && !showing_completions",
"bindings": {
"tab": "editor::ConfirmCompletion"
}
},
{ {
"context": "Editor && showing_code_actions", "context": "Editor && showing_code_actions",
"bindings": { "bindings": {
+6 -3
View File
@@ -19,10 +19,11 @@
"dock": "bottom" "dock": "bottom"
}, },
"edit_predictions": { "edit_predictions": {
"mode": "eager" "disabled_globs": [".md"],
"mode": "subtle"
}, },
"features": { "features": {
"edit_prediction_provider": "none" "edit_prediction_provider": "copilot"
}, },
"collaboration_panel": { "collaboration_panel": {
"button": false "button": false
@@ -37,7 +38,7 @@
"theme": { "theme": {
"mode": "system", "mode": "system",
"light": "One Light", "light": "One Light",
"dark": "Catppuccin Mocha" "dark": "Gruvbox Dark"
}, },
"scrollbar": { "scrollbar": {
"show": "never" "show": "never"
@@ -51,6 +52,7 @@
"buffer_font_family": "Rec Mono Linear", "buffer_font_family": "Rec Mono Linear",
"buffer_font_size": 13, "buffer_font_size": 13,
"terminal": { "terminal": {
"dock": "bottom",
"font_family": "Rec Mono Casual", "font_family": "Rec Mono Casual",
"font_fallbacks": ["FiraCode Nerd Font Mono"] "font_fallbacks": ["FiraCode Nerd Font Mono"]
}, },
@@ -85,6 +87,7 @@
} }
}, },
"project_panel": { "project_panel": {
"dock": "left",
"indent_size": 10, "indent_size": 10,
"auto_fold_dirs": false "auto_fold_dirs": false
}, },