commit 77333b233d43705771c9ea4ebf3e5067776878c2 Author: Adam Gausmann Date: Wed Jun 1 21:13:27 2016 -0500 Initial commit diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..0c1cd66 --- /dev/null +++ b/.bashrc @@ -0,0 +1,21 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +#Colors +alias ls='ls --color=auto' + +PS1='[\u@\h \W]\$ ' + +EDITOR=/usr/bin/nano +GIT_EDITOR=$EDITOR +SUDO_EDITOR=$EDITOR +#PATH=$PATH:/home/adam/bin + +alias se="sudoedit" +alias ed=$EDITOR +alias sc="sudo systemctl" +alias screenshot="clear && screenfetch -s" diff --git a/.nanorc b/.nanorc new file mode 100644 index 0000000..cb1e4a2 --- /dev/null +++ b/.nanorc @@ -0,0 +1,12 @@ +## Use 4-space tabsize +set tabsize 4 + +## Don't display the helpful shortcut lists at the bottom of the screen. +set nohelp + +## Don't wrap text at all. +set nowrap + +## Enable smooth line scrolling +set smooth + diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..02328d0 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,4 @@ +set -g default-terminal "screen-256color" + +set -g status-bg cyan +set -g status-fg black