Updated .bashrc and added headers

This commit is contained in:
Adam Gausmann 2016-06-01 21:35:05 -05:00
parent 77333b233d
commit b39b1512ab
3 changed files with 18 additions and 6 deletions

14
.bashrc
View file

@ -1,21 +1,23 @@
# #
# ~/.bashrc # ~/.bashrc
# Author: Adam Gausmann
# #
# If not running interactively, don't do anything # If not running interactively, don't do anything
[[ $- != *i* ]] && return [[ $- != *i* ]] && return
#Colors # Color aliases
alias ls='ls --color=auto' alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ ' PS1='[\u@\h \W]\$ '
EDITOR=/usr/bin/nano export EDITOR=/usr/bin/nano
GIT_EDITOR=$EDITOR export GIT_EDITOR=$EDITOR
SUDO_EDITOR=$EDITOR export SUDO_EDITOR=$EDITOR
#PATH=$PATH:/home/adam/bin
# Aliases
alias ll="ls -l"
alias la="ls -la"
alias se="sudoedit" alias se="sudoedit"
alias ed=$EDITOR alias ed=$EDITOR
alias sc="sudo systemctl" alias sc="sudo systemctl"
alias screenshot="clear && screenfetch -s"

View file

@ -1,3 +1,8 @@
#
# ~/.nanorc
# Author: Adam Gausmann
#
## Use 4-space tabsize ## Use 4-space tabsize
set tabsize 4 set tabsize 4

View file

@ -1,3 +1,8 @@
#
# ~/.tmux.conf
# Author: Adam Gausmann
#
set -g default-terminal "screen-256color" set -g default-terminal "screen-256color"
set -g status-bg cyan set -g status-bg cyan