9 lines
123 B
Bash
9 lines
123 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# some housekeeping
|
||
|
set -o vi
|
||
|
shopt -s autocd
|
||
|
|
||
|
# ssh keeping tidy
|
||
|
alias ssh="ssh -F $HOME/.config/ssh/config"
|