Skip to content

Commit

Permalink
update dotfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
almet committed Oct 22, 2012
1 parent e2ee3e4 commit a8fbb3e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .functions
Expand Up @@ -28,3 +28,13 @@ function update_zamboni() {
pip install --no-deps --exists-action=w -r requirements/dev.txt pip install --no-deps --exists-action=w -r requirements/dev.txt
schematic migrations schematic migrations
} }

function merge_pull_request() {
echo $1
git remote add $1 git://github.com/$1/$2.git
git fetch $1
git checkout $3
git rebase master
git checkout master
git merge $3
}
8 changes: 8 additions & 0 deletions .gitconfig
Expand Up @@ -7,3 +7,11 @@
user = ametaireau user = ametaireau
[core] [core]
excludesfile = /home/alexis/.gitignore excludesfile = /home/alexis/.gitignore
[giggle]
main-window-maximized = true
main-window-geometry = 700x550+49+24
history-view-vpane-position = 469
main-window-view = HistoryView
file-view-vpane-position = 356
[alias]
co = checkout
4 changes: 2 additions & 2 deletions .vimrc
Expand Up @@ -48,8 +48,8 @@ vnoremap <tab> %
set wrap set wrap
set textwidth=79 set textwidth=79
set formatoptions=qrn1 set formatoptions=qrn1
set list "set list
set listchars=tab:▸\ "set listchars=tab:▸/


"set acd " auto change directory "set acd " auto change directory
set laststatus=2 " Always set a status line set laststatus=2 " Always set a status line
Expand Down
3 changes: 2 additions & 1 deletion .zshrc
Expand Up @@ -3,10 +3,11 @@ ZSH=$HOME/.oh-my-zsh
ZSH_THEME="kennethreitz" ZSH_THEME="kennethreitz"
COMPLETION_WAITING_DOTS="true" COMPLETION_WAITING_DOTS="true"


plugins=(git python debian github pip) plugins=(python debian github pip)


export EDITOR="vim" export EDITOR="vim"
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
source /usr/local/bin/virtualenvwrapper.sh source /usr/local/bin/virtualenvwrapper.sh
source $HOME/.functions source $HOME/.functions
source $HOME/.aliases source $HOME/.aliases
export PIP_DOWNLOAD_CACHE="~/.pipcache"

0 comments on commit a8fbb3e

Please sign in to comment.