From 9e2e5190a749a305902b7cb83fc204303534902e Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 10 Nov 2025 20:43:49 +0000 Subject: [PATCH] Fix things --- .config/ghostty/config | 138 +++++++++++++++++++++++++++++++++++++++++ .config/nvim | 2 +- 2 files changed, 139 insertions(+), 1 deletion(-) create mode 100644 .config/ghostty/config diff --git a/.config/ghostty/config b/.config/ghostty/config new file mode 100644 index 0000000..c06aee4 --- /dev/null +++ b/.config/ghostty/config @@ -0,0 +1,138 @@ +keybind = all:unconsumed:ctrl+shift+a=unbind +keybind = all:unconsumed:ctrl+shift+p=unbind +keybind = all:unconsumed:ctrl+shift+,=reload_config +keybind = all:unconsumed:ctrl+shift+v=paste_from_clipboard + +#resize_split:down,10 +keybind = all:unconsumed:super+ctrl+shift+arrow_down=unbind +#resize_split:left,10 +keybind = all:unconsumed:super+ctrl+shift+arrow_left=unbind +#resize_split:right,10 +keybind = all:unconsumed:super+ctrl+shift+arrow_right=unbind +#resize_split:up,10 +keybind = all:unconsumed:super+ctrl+shift+arrow_up=unbind +#write_screen_file:copy +keybind = all:unconsumed:super+ctrl+shift+j=unbind +#write_screen_file:open +keybind = all:unconsumed:ctrl+alt+shift+j=unbind +#goto_split:previous +keybind = all:unconsumed:super+ctrl+bracket_left=unbind +#goto_split:next +keybind = all:unconsumed:super+ctrl+bracket_right=unbind +#goto_split:down +keybind = all:unconsumed:ctrl+alt+arrow_down=unbind +#goto_split:left +keybind = all:unconsumed:ctrl+alt+arrow_left=unbind +#goto_split:right +keybind = all:unconsumed:ctrl+alt+arrow_right=unbind +#goto_split:up +keybind = all:unconsumed:ctrl+alt+arrow_up=unbind +#toggle_split_zoom +keybind = all:unconsumed:ctrl+shift+enter=unbind +#previous_tab +keybind = all:unconsumed:ctrl+shift+tab=unbind +#jump_to_prompt:1 +keybind = all:unconsumed:ctrl+shift+page_down=unbind +#jump_to_prompt:-1 +keybind = all:unconsumed:ctrl+shift+page_up=unbind +#previous_tab +keybind = all:unconsumed:ctrl+shift+arrow_left=unbind +#next_tab +keybind = all:unconsumed:ctrl+shift+arrow_right=unbind +#select_all +keybind = all:unconsumed:ctrl+shift+a=unbind +#copy_to_clipboard +keybind = all:unconsumed:ctrl+shift+c=unbind +#new_split:down +keybind = all:unconsumed:ctrl+shift+e=unbind +#inspector:toggle +keybind = all:unconsumed:ctrl+shift+i=unbind +#write_screen_file:paste +keybind = all:unconsumed:ctrl+shift+j=unbind +#new_window +keybind = all:unconsumed:ctrl+shift+n=unbind +#new_split:right +keybind = all:unconsumed:ctrl+shift+o=unbind +#toggle_command_palette +keybind = all:unconsumed:ctrl+shift+p=unbind +#quit +keybind = all:unconsumed:ctrl+shift+q=unbind +#new_tab +keybind = all:unconsumed:ctrl+shift+t=unbind +#close_tab:this +keybind = all:unconsumed:ctrl+shift+w=unbind +#goto_tab:1 +keybind = all:unconsumed:alt+digit_1=unbind +#goto_tab:2 +keybind = all:unconsumed:alt+digit_2=unbind +#goto_tab:3 +keybind = all:unconsumed:alt+digit_3=unbind +#goto_tab:4 +keybind = all:unconsumed:alt+digit_4=unbind +#goto_tab:5 +keybind = all:unconsumed:alt+digit_5=unbind +#goto_tab:6 +keybind = all:unconsumed:alt+digit_6=unbind +#goto_tab:7 +keybind = all:unconsumed:alt+digit_7=unbind +#goto_tab:8 +keybind = all:unconsumed:alt+digit_8=unbind +#goto_tab:1 +keybind = all:unconsumed:alt+1=unbind +#goto_tab:2 +keybind = all:unconsumed:alt+2=unbind +#goto_tab:3 +keybind = all:unconsumed:alt+3=unbind +#goto_tab:4 +keybind = all:unconsumed:alt+4=unbind +#goto_tab:5 +keybind = all:unconsumed:alt+5=unbind +#goto_tab:6 +keybind = all:unconsumed:alt+6=unbind +#goto_tab:7 +keybind = all:unconsumed:alt+7=unbind +#goto_tab:8 +keybind = all:unconsumed:alt+8=unbind +#last_tab +keybind = all:unconsumed:alt+9=unbind +#close_window +keybind = all:unconsumed:alt+f4=unbind +#increase_font_size:1 +keybind = all:unconsumed:ctrl+equal=unbind +#increase_font_size:1 +keybind = all:unconsumed:ctrl++=unbind +#open_config +keybind = all:unconsumed:ctrl+,=unbind +#decrease_font_size:1 +keybind = all:unconsumed:ctrl+-=unbind +#reset_font_size +keybind = all:unconsumed:ctrl+0=unbind +#toggle_fullscreen +keybind = all:unconsumed:ctrl+enter=unbind +#next_tab +keybind = all:unconsumed:ctrl+tab=unbind +#copy_to_clipboard +keybind = all:unconsumed:ctrl+insert=unbind +#next_tab +keybind = all:unconsumed:ctrl+page_down=unbind +#previous_tab +keybind = all:unconsumed:ctrl+page_up=unbind +#scroll_to_bottom +keybind = all:unconsumed:shift+end=unbind +#scroll_to_top +keybind = all:unconsumed:shift+home=unbind +#paste_from_selection +keybind = all:unconsumed:shift+insert=unbind +#scroll_page_down +keybind = all:unconsumed:shift+page_down=unbind +#scroll_page_up +keybind = all:unconsumed:shift+page_up=unbind +#adjust_selection:down +keybind = all:unconsumed:shift+arrow_down=unbind +#adjust_selection:left +keybind = all:unconsumed:shift+arrow_left=unbind +#adjust_selection:right +keybind = all:unconsumed:shift+arrow_right=unbind +#adjust_selection:up +keybind = all:unconsumed:shift+arrow_up=unbind + diff --git a/.config/nvim b/.config/nvim index a21a1a3..2255489 160000 --- a/.config/nvim +++ b/.config/nvim @@ -1 +1 @@ -Subproject commit a21a1a33864027e119f322d2580362b250543bc8 +Subproject commit 2255489fd881b389518649a43f1e3d5c92992cbe