From 8ea846430bbd5103af856f2c93cfc9e7b8333da6 Mon Sep 17 00:00:00 2001 From: Mari Date: Fri, 29 Jan 2021 03:29:50 -0500 Subject: [PATCH] Autocommitted updated scripts from mordhona --- per-host/mordhona/.bash_aliases | 4 ++++ per-host/mordhona/.bash_aliases-common | 1 + per-host/mordhona/.config/nvim | 1 + per-host/mordhona/.inputrc | 1 + per-host/mordhona/.inputrc-common | 1 + per-host/mordhona/.ssh/.config-common | 1 + per-host/mordhona/.ssh/.rc-common | 1 + per-host/mordhona/.ssh/authorized_keys | 1 + per-host/mordhona/.ssh/config | 1 + per-host/mordhona/.ssh/known_hosts | 1 + per-host/mordhona/.ssh/rc | 2 ++ per-host/mordhona/.tmux.conf | 1 + per-host/mordhona/.tmux.conf-common | 1 + per-host/mordhona/.vim | 1 + per-host/mordhona/.vimrc | 1 + per-host/mordhona/.vimrc-common | 1 + 16 files changed, 20 insertions(+) create mode 100644 per-host/mordhona/.bash_aliases create mode 120000 per-host/mordhona/.bash_aliases-common create mode 120000 per-host/mordhona/.config/nvim create mode 100644 per-host/mordhona/.inputrc create mode 120000 per-host/mordhona/.inputrc-common create mode 120000 per-host/mordhona/.ssh/.config-common create mode 120000 per-host/mordhona/.ssh/.rc-common create mode 120000 per-host/mordhona/.ssh/authorized_keys create mode 100644 per-host/mordhona/.ssh/config create mode 120000 per-host/mordhona/.ssh/known_hosts create mode 100644 per-host/mordhona/.ssh/rc create mode 100644 per-host/mordhona/.tmux.conf create mode 120000 per-host/mordhona/.tmux.conf-common create mode 120000 per-host/mordhona/.vim create mode 100644 per-host/mordhona/.vimrc create mode 120000 per-host/mordhona/.vimrc-common diff --git a/per-host/mordhona/.bash_aliases b/per-host/mordhona/.bash_aliases new file mode 100644 index 0000000..dc004ed --- /dev/null +++ b/per-host/mordhona/.bash_aliases @@ -0,0 +1,4 @@ +#!/bin/bash +. ~/.bash_aliases-common + +auto_tmux diff --git a/per-host/mordhona/.bash_aliases-common b/per-host/mordhona/.bash_aliases-common new file mode 120000 index 0000000..2cebbdf --- /dev/null +++ b/per-host/mordhona/.bash_aliases-common @@ -0,0 +1 @@ +../../bash_aliases.sh \ No newline at end of file diff --git a/per-host/mordhona/.config/nvim b/per-host/mordhona/.config/nvim new file mode 120000 index 0000000..90f57e4 --- /dev/null +++ b/per-host/mordhona/.config/nvim @@ -0,0 +1 @@ +../../../nvim \ No newline at end of file diff --git a/per-host/mordhona/.inputrc b/per-host/mordhona/.inputrc new file mode 100644 index 0000000..99cec8e --- /dev/null +++ b/per-host/mordhona/.inputrc @@ -0,0 +1 @@ +$include ~/.inputrc-common diff --git a/per-host/mordhona/.inputrc-common b/per-host/mordhona/.inputrc-common new file mode 120000 index 0000000..e2a824e --- /dev/null +++ b/per-host/mordhona/.inputrc-common @@ -0,0 +1 @@ +../../inputrc \ No newline at end of file diff --git a/per-host/mordhona/.ssh/.config-common b/per-host/mordhona/.ssh/.config-common new file mode 120000 index 0000000..6e6d201 --- /dev/null +++ b/per-host/mordhona/.ssh/.config-common @@ -0,0 +1 @@ +../../../ssh/config \ No newline at end of file diff --git a/per-host/mordhona/.ssh/.rc-common b/per-host/mordhona/.ssh/.rc-common new file mode 120000 index 0000000..450d0b6 --- /dev/null +++ b/per-host/mordhona/.ssh/.rc-common @@ -0,0 +1 @@ +../../../ssh/rc \ No newline at end of file diff --git a/per-host/mordhona/.ssh/authorized_keys b/per-host/mordhona/.ssh/authorized_keys new file mode 120000 index 0000000..91ff7ab --- /dev/null +++ b/per-host/mordhona/.ssh/authorized_keys @@ -0,0 +1 @@ +../../../ssh/authorized_keys \ No newline at end of file diff --git a/per-host/mordhona/.ssh/config b/per-host/mordhona/.ssh/config new file mode 100644 index 0000000..0d04e94 --- /dev/null +++ b/per-host/mordhona/.ssh/config @@ -0,0 +1 @@ +Include .config-common diff --git a/per-host/mordhona/.ssh/known_hosts b/per-host/mordhona/.ssh/known_hosts new file mode 120000 index 0000000..6c3c05e --- /dev/null +++ b/per-host/mordhona/.ssh/known_hosts @@ -0,0 +1 @@ +../../../ssh/known_hosts \ No newline at end of file diff --git a/per-host/mordhona/.ssh/rc b/per-host/mordhona/.ssh/rc new file mode 100644 index 0000000..df1a298 --- /dev/null +++ b/per-host/mordhona/.ssh/rc @@ -0,0 +1,2 @@ +#!/bin/sh +. ~/.ssh/.rc-common diff --git a/per-host/mordhona/.tmux.conf b/per-host/mordhona/.tmux.conf new file mode 100644 index 0000000..36fcf47 --- /dev/null +++ b/per-host/mordhona/.tmux.conf @@ -0,0 +1 @@ +source ~/.tmux.conf-common diff --git a/per-host/mordhona/.tmux.conf-common b/per-host/mordhona/.tmux.conf-common new file mode 120000 index 0000000..d9a5ba4 --- /dev/null +++ b/per-host/mordhona/.tmux.conf-common @@ -0,0 +1 @@ +../../tmux.conf \ No newline at end of file diff --git a/per-host/mordhona/.vim b/per-host/mordhona/.vim new file mode 120000 index 0000000..3a26453 --- /dev/null +++ b/per-host/mordhona/.vim @@ -0,0 +1 @@ +../../vim \ No newline at end of file diff --git a/per-host/mordhona/.vimrc b/per-host/mordhona/.vimrc new file mode 100644 index 0000000..92430cd --- /dev/null +++ b/per-host/mordhona/.vimrc @@ -0,0 +1 @@ +source ~/.vimrc-common diff --git a/per-host/mordhona/.vimrc-common b/per-host/mordhona/.vimrc-common new file mode 120000 index 0000000..90f52f0 --- /dev/null +++ b/per-host/mordhona/.vimrc-common @@ -0,0 +1 @@ +../../vimrc \ No newline at end of file