2023-02-10 00:11:54 +01:00
|
|
|
# {{{ Start tmux if not already inside tmux
|
|
|
|
if status is-interactive
|
|
|
|
and not set -q TMUX
|
2023-04-01 21:29:47 +02:00
|
|
|
and not set -q NO_TMUX
|
2023-05-28 05:24:36 +02:00
|
|
|
and set -q ALWAYS_TMUX
|
2023-02-10 00:11:54 +01:00
|
|
|
exec tmux attach -t Welcome || tmux || echo "Something went wrong trying to start tmux"
|
|
|
|
end
|
|
|
|
# }}}
|
|
|
|
# {{{ Sets cursor based on vim mode
|
|
|
|
set fish_cursor_default block # Set the normal and visual mode cursors to a block
|
|
|
|
set fish_cursor_insert line # Set the insert mode cursor to a line
|
|
|
|
set fish_cursor_replace_one underscore # Set the replace mode cursor to an underscore
|
|
|
|
|
|
|
|
# Force fish to skip some checks (I think?)
|
|
|
|
# TODO: research why this is here
|
|
|
|
set fish_vi_force_cursor
|
|
|
|
# }}}
|
|
|
|
# {{{ Disable greeting
|
|
|
|
set fish_greeting
|
|
|
|
# }}}
|
2023-02-27 19:47:06 +01:00
|
|
|
# {{{ Keybinds
|
2023-02-10 00:11:54 +01:00
|
|
|
function fish_user_key_bindings
|
2023-02-27 19:47:06 +01:00
|
|
|
# {{{ Use vim-style keybinds
|
2023-02-10 00:11:54 +01:00
|
|
|
# Use the vim keybinds
|
|
|
|
fish_vi_key_bindings
|
|
|
|
|
|
|
|
bind -e -M insert -k f10 # unbinds f10
|
|
|
|
bind -M insert -m default -k f10 'commandline -f repaint' # Exit insert mode with <f10>
|
2023-02-27 19:47:06 +01:00
|
|
|
# }}}
|
|
|
|
# {{{ C-x to clear screen
|
|
|
|
bind -M default \cx "clear && commandline -f repaint"
|
|
|
|
bind -M insert \cx "clear && commandline -f repaint"
|
|
|
|
# }}}
|
2023-05-28 00:40:40 +02:00
|
|
|
# {{{ C-enter to run command through less
|
|
|
|
bind -M default \e\[13\;2u "commandline -a ' | less' && commandline -f execute"
|
|
|
|
bind -M insert \e\[13\;2u "commandline -a ' | less' && commandline -f execute"
|
|
|
|
# }}}
|
2023-02-27 19:47:06 +01:00
|
|
|
# {{{ C-g to open neogit
|
|
|
|
bind -M default \cg "nvim +Neogit"
|
|
|
|
bind -M insert \cg "nvim +Neogit"
|
|
|
|
# }}}
|
2023-02-10 00:11:54 +01:00
|
|
|
end
|
|
|
|
# }}}
|
2023-11-27 00:15:03 +01:00
|
|
|
# {{{ Helpers
|
|
|
|
function take -d "Create a directory and cd into it"
|
|
|
|
mkdir $argv; and cd $argv
|
|
|
|
end
|
|
|
|
# }}}
|