Initial commit

This commit is contained in:
Adam Gausmann 2016-06-01 21:13:27 -05:00
commit 77333b233d
3 changed files with 37 additions and 0 deletions

21
.bashrc Normal file
View file

@ -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"

12
.nanorc Normal file
View file

@ -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

4
.tmux.conf Normal file
View file

@ -0,0 +1,4 @@
set -g default-terminal "screen-256color"
set -g status-bg cyan
set -g status-fg black