diff options
author | FivePixels <o5pxels@gmail.com> | 2022-03-15 22:46:15 -0500 |
---|---|---|
committer | FivePixels <o5pxels@gmail.com> | 2022-03-15 22:46:15 -0500 |
commit | 8eb8f0ae632e2fb7629b3ccbb33c2b831308d5e9 (patch) | |
tree | 40a50fb86ada1e97dcbff33928e348613ebf1d6f | |
parent | 48fdf8068b4ec984b9af56eb8ef1378054364fee (diff) | |
download | dots-8eb8f0ae632e2fb7629b3ccbb33c2b831308d5e9.tar.xz dots-8eb8f0ae632e2fb7629b3ccbb33c2b831308d5e9.zip |
Update fish to support vim mode and revert Ctrl-F keybind removal
-rw-r--r-- | .config/fish/config.fish | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 023ff7b..49eadd8 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -3,3 +3,9 @@ if status is-interactive end fish_vi_key_bindings + +function fish_user_key_bindings + for mode in insert default visual + bind -M $mode \cf forward-char + end +end |