Initial commit

This excempts my two emacs configurations for spacemacs and doom-emacs.

THere are still credentials in plaintext and I need to solve how to
store those in git without the credentials.
This commit is contained in:
Colin Powell
2018-12-02 12:41:17 -05:00
commit 848336d3d5
30 changed files with 1378 additions and 0 deletions

22
tmux.conf Normal file
View File

@ -0,0 +1,22 @@
bind j select-pane -D
bind k select-pane -U
bind h select-pane -L
bind l select-pane -R
bind | split-window -h
bind - split-window -v
bind -r J resize-pane -D 10
bind -r K resize-pane -U 10
bind -r H resize-pane -L 10
bind -r L resize-pane -R 10
set -g pane-border-fg white
set -g pane-active-border-fg cyan
set -g pane-active-border-bg cyan
set -g status-left "session: #S | window: #I | pane: #P"
set -g prefix C-a
bind-key C-a last-window
set -g default-terminal "screen-256color"
set -g default-command "/bin/bash"