From a95fe29e8e17885d394cd5ade6275b38f1e9cf28 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 6 Mar 2025 02:56:50 +0000 Subject: [PATCH] feat(warp): add basic config and theme --- install.sh | 1 + warp/keybindings.yaml | 9 +++++++++ warp/themes/tango-with-monokai.yaml | 25 +++++++++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 warp/keybindings.yaml create mode 100644 warp/themes/tango-with-monokai.yaml diff --git a/install.sh b/install.sh index 700b834..a9083d4 100755 --- a/install.sh +++ b/install.sh @@ -42,6 +42,7 @@ SYMLINKS=( rustfmt.toml tmux tmux.conf + warp zshenv zshrc ) diff --git a/warp/keybindings.yaml b/warp/keybindings.yaml new file mode 100644 index 0000000..36a3937 --- /dev/null +++ b/warp/keybindings.yaml @@ -0,0 +1,9 @@ +--- +"pane_group:navigate_right": alt-l +"pane_group:navigate_up": alt-i +"pane_group:navigate_down": alt-k +"terminal:executing_command_move_cursor_word_right": alt-f +"editor_view:move_forward_one_word": alt-f +"terminal:executing_command_move_cursor_word_left": alt-b +"pane_group:navigate_left": alt-j +"editor_view:move_backward_one_word": alt-b diff --git a/warp/themes/tango-with-monokai.yaml b/warp/themes/tango-with-monokai.yaml new file mode 100644 index 0000000..b00e133 --- /dev/null +++ b/warp/themes/tango-with-monokai.yaml @@ -0,0 +1,25 @@ +name: Tango with Monokai +accent: "#5696d5" # Using bright blue as accent color +cursor: "#D0D0D0" # Using the cursor-color from Ghostty +background: "#000000" +foreground: "#ffffff" +details: darker # This is a dark theme +terminal_colors: + normal: + black: "#000000" # palette 0 + red: "#cf5041" # palette 1 + green: "#8bba48" # palette 2 + yellow: "#c3a643" # palette 3 + blue: "#37689f" # palette 4 + magenta: "#9b589d" # palette 5 + cyan: "#69b8cb" # palette 6 + white: "#cccccc" # palette 7 + bright: + black: "#686a66" # palette 8 + red: "#ed3a2c" # palette 9 + green: "#96cf4d" # palette 10 + yellow: "#fdeb61" # palette 11 + blue: "#5696d5" # palette 12 + magenta: "#9d6aa5" # palette 13 + cyan: "#75cee3" # palette 14 + white: "#f5f5f5" # palette 15