first commit
This commit is contained in:
4
fish/conf.d.disabled/.gitignore
vendored
Normal file
4
fish/conf.d.disabled/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*
|
||||
!.gitignore
|
||||
!path.fish
|
||||
!ssh-agent.fish
|
||||
11
fish/conf.d.disabled/path.fish
Normal file
11
fish/conf.d.disabled/path.fish
Normal file
@@ -0,0 +1,11 @@
|
||||
fish_add_path $HOME/.local/bin
|
||||
fish_add_path $HOME/bin
|
||||
|
||||
# cargo
|
||||
if test -f $HOME/.cargo/env.fish
|
||||
source $HOME/.cargo/env.fish
|
||||
end
|
||||
|
||||
if test -d $HOME/.scripts
|
||||
fish_add_path $HOME/.scripts
|
||||
end
|
||||
8
fish/conf.d.disabled/ssh-agent.fish
Normal file
8
fish/conf.d.disabled/ssh-agent.fish
Normal file
@@ -0,0 +1,8 @@
|
||||
if test -z "$SSH_AUTH_SOCK"
|
||||
eval (command ssh-agent -c) >/dev/null 2>&1
|
||||
for key in $HOME/.ssh/keys/*
|
||||
if test -f $key
|
||||
command ssh-add $key >/dev/null 2>&1
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user