mirror of
https://github.com/Xevion/dotfiles.git
synced 2026-01-31 06:24:13 -06:00
- Add fzf.fish keybinding customization (remap variables, preserve Atuin history) - Add Fisher plugin auto-update hook for chezmoi apply - Set Vivaldi as default browser on native Linux - Improve commit-staged command instructions - Add Kitty font size configuration
27 lines
1.2 KiB
Plaintext
27 lines
1.2 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" -
|