14 lines
272 B
Fish
14 lines
272 B
Fish
|
#!/usr/bin/env fish
|
||
|
|
||
|
# Projects dir.
|
||
|
set -gx HACK "$HOME/hackin"
|
||
|
|
||
|
# Editor.
|
||
|
set -gx EDITOR nvim
|
||
|
set -gx VISUAL "$EDITOR"
|
||
|
|
||
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||
|
|
||
|
# Use vi key bindings.
|
||
|
set -g fish_key_bindings fish_vi_key_bindings
|