add back tmux and kitty conf

This commit is contained in:
sloane 2024-09-02 09:00:13 -04:00
parent 94c06e0ed6
commit f63995c97c
Signed by: sloanelybutsurely
SSH key fingerprint: SHA256:8SBnwhl+RY3oEyQxy1a9wByPzxWM0x+/Ejc+sIlY5qQ
2 changed files with 29 additions and 0 deletions

8
.config/kitty/kitty.conf Normal file
View file

@ -0,0 +1,8 @@
font_size 16.0
font_family RecMonoCasual Nerd Font Mono
bold_font auto
italic_font auto
bold_italic_font auto
confirm_os_window_close 0
paste_actions quote-urls-at-prompt,confirm-if-large

21
.config/tmux/tmux.conf Normal file
View file

@ -0,0 +1,21 @@
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'catppuccin/tmux#latest'
set -g @catppuccin_flavor 'mocha'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
setw -g mode-keys vi
set-option -g allow-rename off
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
run '~/.tmux/plugins/tpm/tpm'