Overview
Comment: | Add ssh_config
Private parts are in a separate, non-included file. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
7387ac8a421072d538742df679af0441 |
User & Date: | js on 2021-03-26 05:06:44 |
Other Links: | manifest | tags |
Context
2021-03-27
| ||
12:14 | zshrc: Work around gnupg agent path on Fedora check-in: 1990236ded user: js tags: trunk | |
2021-03-26
| ||
05:06 | Add ssh_config check-in: 7387ac8a42 user: js tags: trunk | |
2021-03-21
| ||
10:14 | zshrc: Use wl-copy on Wayland check-in: 8e4a39ffca user: js tags: trunk | |
Changes
Modified setup.sh from [8dac4c2620] to [70bdd18f99].
︙ | ︙ | |||
48 49 50 51 52 53 54 55 56 57 58 59 60 61 | mkdir -p $HOME/.local/share/gnupg link_file gpg.conf .local/share/gnupg/gpg.conf ../../../ fi have tmux && link_file tmux .config/tmux ../ have vim && link_file vim .config/vim ../ have youtube-dl && link_file youtube-dl .config/youtube-dl ../ have zsh && link_file zshrc .zshrc if test x"$(uname -s)" = x"Darwin"; then dest="$HOME/Library/Keyboard Layouts/eu_US.keylayout" # This does not like being symlinked… if [ ! -e "$dest" ]; then echo "Hardlinking eu_US.keylayout -> $dest" ln eu_US.keylayout "$dest" | > > > > | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | mkdir -p $HOME/.local/share/gnupg link_file gpg.conf .local/share/gnupg/gpg.conf ../../../ fi have tmux && link_file tmux .config/tmux ../ have vim && link_file vim .config/vim ../ have youtube-dl && link_file youtube-dl .config/youtube-dl ../ have zsh && link_file zshrc .zshrc if have ssh; then mkdir -p $HOME/.ssh link_file ssh_config .ssh/config ../ fi if test x"$(uname -s)" = x"Darwin"; then dest="$HOME/Library/Keyboard Layouts/eu_US.keylayout" # This does not like being symlinked… if [ ! -e "$dest" ]; then echo "Hardlinking eu_US.keylayout -> $dest" ln eu_US.keylayout "$dest" |
︙ | ︙ |
Added ssh_config version [37cbfe1871].
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | Include config.private Host bitbucket.org HostKeyAlgorithms ssh-rsa Host github.com HostKeyAlgorithms rsa-sha2-512 Host wip.pkgsrc.org Ciphers aes256-gcm@openssh.com Host * Ciphers chacha20-poly1305@openssh.com KexAlgorithms curve25519-sha256@libssh.org HostKeyAlgorithms ssh-ed25519 |