clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add a keybind for editing in vim

sspaeti 50a45b5f 0b6eb44b

+10
+10
tmux/.tmux.conf
··· 70 70 bind-key -T copy-mode-vi 'v' send -X begin-selection # start selecting text with "v" 71 71 bind-key -T copy-mode-vi 'y' send -X copy-selection # copy text with "y" 72 72 unbind -T copy-mode-vi MouseDragEnd1Pane # don't exit copy mode after dragging with mouse 73 + 74 + # Bindkey "<Prefix> \" to edit buffer in a new nvim session 75 + bind-key -N "Edit buffer in a new nvim session" \\ { 76 + capture-pane -S - 77 + save-buffer /tmp/tmux_buffer_tmp 78 + delete-buffer 79 + split-window 80 + send-keys 'nvim /tmp/tmux_buffer_tmp' Enter 81 + } 82 + 73 83 #map another shortcut to clear window as c-l is now taken for navigation: now `ctrl+t and b` 74 84 bind b send-keys 'C-l' 75 85