mirror of
https://github.com/Xevion/dotfiles.git
synced 2026-01-31 06:24:13 -06:00
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
# BEGIN_KITTY_THEME
|
|
# Dark Pride
|
|
include current-theme.conf
|
|
# END_KITTY_THEME
|
|
|
|
enable_audio_bell no
|
|
font_family MesloLGS NF
|
|
font_size 9.0
|
|
|
|
# Disable command finish notifications (fixes cryptic "4;0;0" notifications)
|
|
notify_on_cmd_finish never
|
|
|
|
# Claude Code: Enable Shift+Enter for multi-line prompts
|
|
map shift+enter send_text all \n
|
|
|
|
# Copy last command output directly to clipboard
|
|
map ctrl+shift+o launch --stdin-source=@last_cmd_output --type=overlay bash -c "xclip -selection clipboard && echo 'Copied last command output to clipboard!'"
|
|
|
|
# Copy visible screen content to clipboard (works in any window including overlays)
|
|
map ctrl+shift+y launch --allow-remote-control --type=background bash -c "kitten @ get-text --match state:focused --extent screen | xclip -selection clipboard"
|
|
|
|
# Open last command output in Neovim for easy selection (starts in visual line mode)
|
|
map ctrl+shift+g launch --stdin-source=@last_cmd_output --type=overlay nvim -u NONE -c "luafile ~/.config/kitty/buffer-select.lua" -
|
|
|
|
# Open full scrollback in Neovim for easy selection (starts in visual line mode)
|
|
map ctrl+shift+f launch --stdin-source=@screen_scrollback --type=overlay nvim -u NONE -c "luafile ~/.config/kitty/buffer-select.lua" -
|
|
|
|
# Move current window to another tab interactively
|
|
map ctrl+shift+m detach_window ask
|
|
|
|
# Move current window to a new tab
|
|
map ctrl+shift+n detach_window new-tab
|