diff options
Diffstat (limited to 'setup/core')
| -rwxr-xr-x | setup/core/ssh.sh | 7 | ||||
| -rwxr-xr-x | setup/core/vim.sh | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/setup/core/ssh.sh b/setup/core/ssh.sh index 362903a..c4454ae 100755 --- a/setup/core/ssh.sh +++ b/setup/core/ssh.sh | |||
| @@ -1,9 +1,12 @@ | |||
| 1 | #!/bin/bash | 1 | #!/bin/bash |
| 2 | 2 | ||
| 3 | dnf install -y git | ||
| 4 | |||
| 3 | echo "PasswordAuthentication no" | sudo tee -a /etc/ssh/sshd_config | 5 | echo "PasswordAuthentication no" | sudo tee -a /etc/ssh/sshd_config |
| 4 | echo "AllowTcpForwarding yes" | sudo tee -a /etc/ssh/sshd_config | 6 | echo "AllowTcpForwarding yes" | sudo tee -a /etc/ssh/sshd_config |
| 5 | echo "GatewayPorts yes" | sudo tee -a /etc/ssh/sshd_config | 7 | echo "GatewayPorts yes" | sudo tee -a /etc/ssh/sshd_config |
| 6 | echo "AllowAgentForwarding yes" | sudo tee -a /etc/ssh/sshd_config | 8 | echo "AllowAgentForwarding yes" | sudo tee -a /etc/ssh/sshd_config |
| 7 | 9 | ||
| 8 | git clone https://git.noml.ch/keys/.git ~/keys | 10 | git clone https://git.noml.ch/keys/ ~/keys |
| 9 | ~/keys/add-ssh-keys.sh | 11 | ~/keys/add-ssh-keys.sh |
| 12 | sudo systemctl restart sshd | ||
diff --git a/setup/core/vim.sh b/setup/core/vim.sh index 9571887..bd99a13 100755 --- a/setup/core/vim.sh +++ b/setup/core/vim.sh | |||
| @@ -60,4 +60,7 @@ setlocal regexpengine=2 | |||
| 60 | set paste | 60 | set paste |
| 61 | set foldcolumn=12 | 61 | set foldcolumn=12 |
| 62 | 62 | ||
| 63 | set noswapfile | ||
| 64 | autocmd InsertLeave * silent! update | ||
| 65 | |||
| 63 | EOF | 66 | EOF |
