Work fixes #3
|
@ -10,8 +10,8 @@ for f in vars colors prompt functions key-bindings
|
|||
source $FISH_PATH/$f.fish
|
||||
end
|
||||
|
||||
if has_command brew && test -f (brew --prefix asdf)/lib/asdf.fish
|
||||
set -Ux ASDF_DIR (brew --prefix asdf)
|
||||
if has_command brew && test -f (brew --prefix asdf)/libexec/asdf.fish
|
||||
set --universal --export ASDF_DIR (brew --prefix asdf)
|
||||
source (brew --prefix asdf)/libexec/asdf.fish
|
||||
else if test -f $HOME/.asdf/asdf.fish
|
||||
source $HOME/.asdf/asdf.fish
|
||||
|
@ -41,5 +41,6 @@ if test -f /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
|||
set --prepend --export --global fish_user_paths $HOME/.nix-profile/bin /nix/var/nix/profiles/default/bin
|
||||
end
|
||||
|
||||
|
||||
test $PWD = $HOME && begin; cd $NICE_HOME || cd; end
|
||||
test $PWD = $HOME && begin
|
||||
cd $NICE_HOME || cd
|
||||
end
|
||||
|
|
|
@ -1,2 +1,4 @@
|
|||
theme = "bogster"
|
||||
|
||||
[keys.insert]
|
||||
j = { k = "normal_mode" }
|
||||
j = { k = "normal_mode" }
|
1
common/helix/runtime
Symbolic link
1
common/helix/runtime
Symbolic link
|
@ -0,0 +1 @@
|
|||
/Users/danielflanagan/code/helix/runtime
|
|
@ -25,6 +25,12 @@ map shift+insert paste_from_clipboard
|
|||
map ctrl+shift+v paste_from_selection
|
||||
map ctrl+shift+c copy_to_clipboard
|
||||
|
||||
map ctrl+shift+h neighboring_window left
|
||||
map ctrl+shift+l neighboring_window right
|
||||
map ctrl+shift+k neighboring_window up
|
||||
map ctrl+shift+j neighboring_window down
|
||||
map ctrl+shift+h nth_window -1
|
||||
|
||||
enable_audio_bell yes
|
||||
|
||||
url_style single
|
||||
|
|
Reference in a new issue