1
Fork 0
satellite/home/features/cli/fish/config.fish
Matei Adriel 424a1db3a7
Improve setup in many small ways
- ircgay command for catgirl
- fish keybinds for launching $EDITOR
- uptimes script
- fix neovide launch flags
2024-02-09 19:18:33 +01:00

61 lines
1.9 KiB
Fish

# {{{ Start tmux if not already inside tmux
if status is-interactive
and not set -q TMUX
and not set -q NO_TMUX
and set -q ALWAYS_TMUX
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
# }}}
# {{{ Keybinds
function fish_user_key_bindings
# {{{ Use vim-style keybinds
# 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>
# }}}
# {{{ C-x to clear screen
bind -M default \cx "clear && commandline -f repaint"
bind -M insert \cx "clear && commandline -f repaint"
# }}}
# {{{ C-z to run `fg`
bind -M default \cz "fg && commandline -f repaint"
bind -M insert \cz "fg && commandline -f repaint"
# }}}
# {{{ 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"
# }}}
# {{{ C-g to open neogit
bind -M default \cg "nvim +Neogit"
bind -M insert \cg "nvim +Neogit"
# }}}
# {{{ C-e to open $EDITOR
bind -M default \ce "$EDITOR"
bind -M insert \ce "$EDITOR"
# }}}
# {{{ C-S-e to open commandline in $EDITOR
bind -M default \e\[69\;5u "commandline -f edit_command_buffer"
bind -M insert \e\[69\;5u "commandline -f edit_command_buffer"
# }}}
end
# }}}
# {{{ Helpers
function take -d "Create a directory and cd into it"
mkdir $argv; and cd $argv
end
# }}}