adds fish completions and fixes ssh breaking change
This commit is contained in:
parent
93e50a67d1
commit
556b83a8cd
2 changed files with 11 additions and 1 deletions
|
|
@ -69,6 +69,14 @@
|
||||||
|
|
||||||
zoxide init fish | source
|
zoxide init fish | source
|
||||||
fnm env --use-on-cd --shell fish | source
|
fnm env --use-on-cd --shell fish | source
|
||||||
|
|
||||||
|
if test -d (brew --prefix)"/share/fish/completions"
|
||||||
|
set -p fish_complete_path (brew --prefix)/share/fish/completions
|
||||||
|
end
|
||||||
|
|
||||||
|
if test -d (brew --prefix)"/share/fish/vendor_completions.d"
|
||||||
|
set -p fish_complete_path (brew --prefix)/share/fish/vendor_completions.d
|
||||||
|
end
|
||||||
'';
|
'';
|
||||||
|
|
||||||
shellAbbrs = {
|
shellAbbrs = {
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,10 @@
|
||||||
{
|
{
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
addKeysToAgent = "yes";
|
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
|
"*" = {
|
||||||
|
addKeysToAgent = "yes";
|
||||||
|
};
|
||||||
"dnsc-server" = {
|
"dnsc-server" = {
|
||||||
hostname = "100.103.199.4";
|
hostname = "100.103.199.4";
|
||||||
user = "dennis";
|
user = "dennis";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue