Updated the configs from Ansel with my configs

This commit is contained in:
Tony Grosinger 2012-11-10 19:53:52 -08:00
parent fff7ab4f1a
commit 371911ba84
9 changed files with 129 additions and 117 deletions

53
.bashrc

@ -1,53 +0,0 @@
#
# ~/.bashrc
#
# Reset
Color_Off='\e[0m' # Text Reset
# Regular Colors
Black='\e[0;30m' # Black
Red='\e[0;31m' # Red
Green='\e[0;32m' # Green
Yellow='\e[0;33m' # Yellow
Blue='\e[0;34m' # Blue
Purple='\e[0;35m' # Purple
Cyan='\e[0;36m' # Cyan
White='\e[0;37m' # White
# Background
On_Black='\e[40m' # Black
On_Red='\e[41m' # Red
On_Green='\e[42m' # Green
On_Yellow='\e[43m' # Yellow
On_Blue='\e[44m' # Blue
On_Purple='\e[45m' # Purple
On_Cyan='\e[46m' # Cyan
On_White='\e[47m' # White
alias :q='exit'
alias ls='ls -a --color=auto'
alias ll='ls -l'
alias up='cd ../'
alias clear='clear;ls;'
# Git
alias gs='git status '
alias ga='git add '
alias gb='git branch '
alias gc='git commit'
alias gd='git diff'
alias go='git checkout '
alias gh='git hist '
# TMUX
alias tmux='tmux -2'
alias patched='cp ~/.custom/tmux-powerline/config.sh.patched ~/.custom/tmux-powerline/config.sh'
alias unpatched='cp ~/.custom/tmux-powerline/config.sh.unpatched ~/.custom/tmux-powerline/config.sh'
# Update Forum
alias uf='sudo cp ~/forum/htdocs/const/* /usr/local/lib/python2.7/dist-packages/askbot/const/; sudo cp ~/forum/htdocs/models/* /usr/local/lib/python2.7/dist-packages/askbot/models/; sudo cp ~/forum/htdocs/views/* /usr/local/lib/python2.7/dist-packages/askbot/views/; echo "Forum source updated. Server restart my be necessary."'
# Prompt
PS1="\[$Black$On_White\]\W \$\[$Color_Off\] "
PS1="$PS1"'$([ -n "$TMUX" ] && tmux setenv TMUXPWD_$(tmux display -p "#I_#P") "$PWD")'

@ -1,6 +1,6 @@
[user]
name = Ansel Santosa
email = ansel@extrahop.com
name = Tony Grosinger
email = tony@grosinger.net
[color]
ui = auto
[alias]

13
.gitignore vendored

@ -2,3 +2,16 @@
*.swp
*~
.netrwhist
# Python
*.pyc
# Java
*.jar
*.zip
*.war
target/
# Eclipse
.project
.classpath

57
.tmux.conf Executable file → Normal file

@ -1,60 +1,45 @@
# Status bar options
set -g status on
set -g status-utf8 on
set -g status-justify "centre"
set -g status-interval 2
set -g status-left-length 60
set -g status-right-length 90
set -g status-left "#(~/.custom/tmux-powerline/status-left.sh)"
set -g status-right "#(~/.custom/tmux-powerline/status-right.sh)"
set-window-option -g clock-mode-style 12
set-option -g status on
set-option -g status-interval 2
set-option -g status-utf8 on
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
set-option -g status-left "#(~/tmux-powerline/status-left.sh)"
set-option -g status-right "#(~/tmux-powerline/status-right.sh)"
# Allow mouse interaction
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window on
set -g mode-mouse on
# Layout options
#setw -g aggressive-resize on
### Copy / Paste
set-window-option -g mode-keys vi
# Keybindings
bind-key -t vi-copy 'v' begin-selection
bind-key -t vi-copy 'y' copy-selection
#### COLOUR (Solarized 256)
#### COLOUR (Solarized dark)
# default statusbar colors
set-option -g status-bg colour235 #base02
set-option -g status-fg colour136 #yellow
set-option -g status-bg black #base02
set-option -g status-fg yellow #yellow
set-option -g status-attr default
# default window title colors
set-window-option -g window-status-fg colour244 #base0
set-window-option -g window-status-fg brightblue #base0
set-window-option -g window-status-bg default
#set-window-option -g window-status-attr dim
# active window title colors
set-window-option -g window-status-current-fg colour166 #orange
set-window-option -g window-status-current-fg brightred #orange
set-window-option -g window-status-current-bg default
#set-window-option -g window-status-current-attr bright
# pane border
set-option -g pane-border-fg colour235 #base02
set-option -g pane-active-border-fg colour240 #base01
set-option -g pane-border-fg black #base02
set-option -g pane-active-border-fg brightgreen #base01
# message text
set-option -g message-bg colour235 #base02
set-option -g message-fg colour166 #orange
set-option -g message-bg black #base02
set-option -g message-fg brightred #orange
# pane number display
set-option -g display-panes-active-colour colour33 #blue
set-option -g display-panes-colour colour166 #orange
set-option -g display-panes-active-colour blue #blue
set-option -g display-panes-colour brightred #orange
# clock
set-window-option -g clock-mode-colour colour64 #green
set-window-option -g clock-mode-colour green #green

1
.vim/bundle/ctrlp.vim Submodule

@ -0,0 +1 @@
Subproject commit be5842a376f16c16c5dc4cc1879d7168a074f7de

51
.vimrc

@ -1,28 +1,39 @@
syntax enable
syntax on
filetype on
filetype plugin on
set number
set background=dark
colorscheme solarized
filetype on
filetype plugin on
set number
set ts=4
set nowrap
set softtabstop=4
set expandtab
set shiftwidth=4
set autoindent
set smartindent
set pastetoggle=<F2>
" search
set ignorecase
set smartcase
set incsearch
" leader
let mapleader = ","
let g:mapleader = ","
" tabs
map <leader>tn :tabnew<cr>
map <leader>to :tabonly<cr>
map <leader>tc :tabclose<cr>
map <leader>tm :tabmove
map <leader>t<leader> :tabnext
" backup
set backup
set backupdir=$HOME/.vim/backups
set directory=$HOME/.vim/swaps
" tabs
map <C-o> :tabnext<CR>
map <C-i> :tabprevious<CR>
map t :tabnew
" indenting
set tabstop=4
set softtabstop=4
set expandtab
set shiftwidth=4
set autoindent
set smartindent
" search
set ignorecase
set smartcase
set incsearch
" plugins
set runtimepath^=~/.vim/bundle/ctrlp.vim

50
.zshrc Normal file

@ -0,0 +1,50 @@
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt appendhistory autocd
bindkey -v
bindkey '^R' history-incremental-search-backward
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/tony/.zshrc'
autoload -Uz compinit promptinit
compinit
promptinit
prompt walters
# End of lines added by compinstall
precmd () {
# tmux support
PROMPT="$PS1"`[ -n "$TMUX" ] && tmux setenv TMUXPWD_$(tmux display -p "#I_#P") "$PWD"`
}
# SSH
alias aws="ssh -i ~/.ssh/capstone.pem ec2-user@ec2-174-129-49-253.compute-1.amazonaws.com"
# Navigation
alias -r c="clear & ls -lha"
alias -r ..="cd .."
alias ls="ls --color=auto"
alias la="ls -lha"
# Applications
alias mongod="mongod -f /etc/mongodb.conf"
alias tmux="tmux -2"
# Computer control
alias -r reboot="echo That would be bad..."
alias -r shutdown="echo Don't do that"
# Git
alias gp="git pull"
alias ga="git add "
alias gl="git log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short"
alias gc="git commit -m "
alias gs="git status"
alias gpp="git push"
# Updating
alias -r update="sudo pacman -Syu"
alias pacman="sudo pacman"

@ -10,12 +10,12 @@ case "$choice" in
echo "Moving to Home directory...";
cd ~;
echo "Linking bash...";
if [ -f .bashrc ];
echo "Linking zsh...";
if [ -f .zshrc ];
then
rm .bashrc;
rm .zshrc;
fi
ln -s $DIR/.bashrc .bashrc;
ln -s $DIR/.zshrc .zshrc;
echo "Linking vim...";
if [ -f .vimrc ];
@ -23,6 +23,11 @@ case "$choice" in
rm .vimrc;
fi
ln -s $DIR/.vimrc .vimrc;
if [ -d .vim ];
then
rm -rf .vim;
fi
ln -s $DIR/.vim .vim;
echo "Linking Git...";
if [ -f .gitconfig ];
@ -39,7 +44,7 @@ case "$choice" in
ln -s $DIR/.tmux.conf .tmux.conf;
echo "Hotswapping bash...";
source .bashrc;
source .zshrc;
echo "Done! Exiting."
;;

@ -1 +1 @@
Subproject commit 3b649fdcef980346ee6d1092ec68cc9164e12f83
Subproject commit 0f2714455afa337d280a08ab964d0ec0ec543c21