From f38eb6402763d68310fbae16308912079629e593 Mon Sep 17 00:00:00 2001 From: Roland Thomas Date: Tue, 10 Nov 2020 17:00:15 -0800 Subject: [PATCH] Initial commit --- .bashrc | 15 +++++++++++++++ .tmux.conf | 17 +++++++++++++++++ README.md | 1 + 3 files changed, 33 insertions(+) create mode 100644 .bashrc create mode 100644 .tmux.conf create mode 100644 README.md diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..68854a1 --- /dev/null +++ b/.bashrc @@ -0,0 +1,15 @@ +# .bashrc + +# Source global definitions +if [ -f /etc/bashrc ]; then + . /etc/bashrc +fi + +# User specific environment +PATH="$HOME/.local/bin:$HOME/bin:$PATH" +export PATH + +# Uncomment the following line if you don't like systemctl's auto-paging feature: +# export SYSTEMD_PAGER= + +# User specific aliases and functions diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..9026ba2 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,17 @@ +setw -g mode-keys vi +set -g status-keys vi + +# remap prefix from 'C-b' to 'C-a' +unbind C-b +set-option -g prefix C-a +bind-key C-a send-prefix + +# don't rename windows automatically +set-option -g allow-rename off + +# smart pane swtiching with awareness of vim splits + +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R diff --git a/README.md b/README.md new file mode 100644 index 0000000..304360c --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +Readme