diff --git a/.config/focus-editor/global.focus-config b/.config/focus-editor/global.focus-config index 671c058..10ea1e6 100644 --- a/.config/focus-editor/global.focus-config +++ b/.config/focus-editor/global.focus-config @@ -390,7 +390,7 @@ Shift-Cmd-F8 go_to_previous_build_error_in_side_pane [[style]] -theme: default +theme: bedroom [fonts] font: default diff --git a/.config/focus-editor/themes/bedroom.focus-theme b/.config/focus-editor/themes/bedroom.focus-theme new file mode 100644 index 0000000..1e1b846 --- /dev/null +++ b/.config/focus-editor/themes/bedroom.focus-theme @@ -0,0 +1,120 @@ +[22] # Version number. Do not delete. + +[colors] +background0: 0E131EFF +background1: 0E131EFF +background2: 0E131EFF +background3: 0E131EFF +background4: 2B344AFF + +# NOTE: region_scope colors only work for Jai at the moment +region_scope_export: 0E131EFF +region_scope_file: 1F2638FF +region_scope_module: 111621FF + +region_header: 1F2638FF +region_success: 226022FF +region_warning: 986032FF +region_error: 772222FF +region_heredoc: 000000FF + +selection_active: 354770FF +selection_inactive: 263351FF +selection_highlight: FCEDFC26 +search_result_active: 8E772EFF +search_result_inactive: FCEDFC26 +scrollbar: 0E131EFF +scrollbar_hover: 3C4964FF +scrollbar_background: 2B344AFF +cursor: 3DDF23FF +cursor_inactive: 87919DFF +paste_animation: 1C4449FF +splitter: 0E131EFF +splitter_hover: 1F2638FF +ruler: FCEDFC26 +indent_guide: FCEDFC26 +letter_highlight: 14DED1FF +list_cursor_lite: 3C496488 +list_cursor: 3C4964FF +shadow_dark: 0E161C7F +shadow_transparent: 0E161C00 +text_input_label: 3B4450FF +char_under_cursor: 000000FF +bracket_highlight: E8FCFE30 + + +ui_default: DADEE5FF +ui_dim: 87919DFF +ui_neutral: 4C4C4CFF +ui_warning: F8AD34FF +ui_warning_dim: 986032FF +ui_error: 772222FF +ui_error_bright: FF0000FF +ui_success: 227722FF + +build_panel_background: 000000FF +build_panel_scrollbar: 33CCCC19 +build_panel_scrollbar_hover: 3C4964FF +build_panel_scrollbar_background: 2B344AFF +build_panel_title_bar: 2B344AFF + +code_default: DADEE5FF +code_invalid: FF0000FF + +code_string_literal: D3B58DFF +code_multiline_string: D3B58DFF +code_raw_string: D3B58DFF +code_char_literal: D3B58DFF + +code_identifier: DADEE5FF +code_note: F9DD03FF +code_number: 7FCBCBFF + +code_error: FF0000FF +code_warning: E4D97DFF +code_highlight: F9DD03FF + +code_comment: 88C0DBFF +code_multiline_comment: 88C0DBFF + +code_operation: DADEE5FF +code_punctuation: DADEE5FF + +code_keyword: C47616FF +code_type: 14DED1FF +code_value: 7FCBCBFF +code_modifier: C47616FF +code_attribute: C47616FF +code_enum_variant: DADEE5FF +code_macro: E0AD82FF +code_function: DADEE5FF + +code_builtin_variable: 7DBAC1FF +code_builtin_function: E0AD82FF +code_builtin_exception: E0AD82FF + +code_directive: C47616FF +code_directive_modifier: C47616FF + +code_header1: C47616FF +code_header2: E0AD82FF +code_header3: E0AD82FF +code_header4: E0AD82FF +code_header5: E0AD82FF +code_header6: E0AD82FF + +# Added after migration to version [18] +active_pane_border: 88C0DBFF +inactive_pane_dim_overlay: 050505FF + +# Added after migration to version [22] +code_comment_highlight1: F9DD03FF +code_comment_highlight2: FF0000FF +code_comment_highlight3: C47616FF +code_comment_highlight4: 7FCBCBFF +cursor_line_highlight: 2B344AFF +color_preview_title_bar: 2B344AFF +code_addition: 33B333FF +code_deletion: E64D4DFF +region_addition: 2260224C +region_deletion: 7722224C diff --git a/.config/ghostty/config b/.config/ghostty/config index 9da3d04..675772e 100644 --- a/.config/ghostty/config +++ b/.config/ghostty/config @@ -2,3 +2,5 @@ font-feature = -liga font-feature = -calt font-feature = -dlig theme = iTerm2 Dark Background + +keybind = f7=text:\x03\x04\x1b[A\r\x43\r diff --git a/.config/zed/keymap.json b/.config/zed/keymap.json index d267779..2d5f3f8 100644 --- a/.config/zed/keymap.json +++ b/.config/zed/keymap.json @@ -12,6 +12,7 @@ "f6": "editor::OrganizeImports", "f7": "editor::Format", "f10": "debugger::StepOver", + "f11": "debugger::StepInto", "cmd-shift-a": "editor::SelectAllMatches", "cmd-\\": "workspace::CloseAllDocks", "cmd-|": "workspace::CloseInactiveTabsAndPanes" diff --git a/.config/zed/settings.json b/.config/zed/settings.json index e6d209b..f1f687f 100644 --- a/.config/zed/settings.json +++ b/.config/zed/settings.json @@ -48,7 +48,7 @@ "theme": { "mode": "system", - "light": "One Dark", + "light": "New Darcula", "dark": "New Darcula" },