Skip to content

Instantly share code, notes, and snippets.

View thecompyoda's full-sized avatar

Donnie Bartley thecompyoda

View GitHub Profile
@thecompyoda
thecompyoda / .bashrc
Last active August 21, 2016 10:24
*nix Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@thecompyoda
thecompyoda / .vimrc
Last active August 21, 2016 20:34
Mac OSX Vim Settings
"---------------------
" 1. vim options
"---------------------
"{{{
syntax enable " enable syntax processing
set background=dark " set the background for the colorscheme below
set number " show line numbers
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
@thecompyoda
thecompyoda / .bash_profile
Last active August 21, 2016 20:16 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------
# 1. ENVIRONMENT CONFIGURATION
# ---------------------------------------
#{{{
# Prompt
# ------------------------------------------------------------
export PS1="################################################################################\n# \w @ \h (\u) \n# => "
export PS2="# => "