Skip to content

Commit

Permalink
show line numbers in vi
Browse files Browse the repository at this point in the history
  • Loading branch information
salicio committed Apr 16, 2012
1 parent fb398f3 commit 8ec5115
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions git/gitconfig.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,11 @@

[github]
user = salicio
[core]
excludesfile = /Users/roberto/.gitignore_global
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
3 changes: 3 additions & 0 deletions vi/vimrc.symlink
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
set nocompatible " be iMproved
set laststatus=2 " Always show the statusline
set t_Co=256 " Explicitly tell vim that the terminal has 256 colors
set number " Show line numbers

syntax on
filetype off " required!
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Expand Down
7 changes: 6 additions & 1 deletion zsh/zshrc.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ alias la="ls -la"
alias gf="git diff"
alias gs="git st"
alias gcm="git ci -m"
alias pear="php /usr/lib/php/pear/pearcmd.php"
alias pecl="php /usr/lib/php/pear/peclcmd.php"

# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
Expand All @@ -39,4 +41,7 @@ source $ZSH/oh-my-zsh.sh

# Customize to your needs...
export NODE_PATH=/usr/local/lib/node_modules
export PATH=./bin:/Users/roberto/.dotfiles/bin:/Users/roberto/.rbenv/shims:/Users/roberto/.rbenv/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/usr/X11/bin
#export PATH=/Applications/MAMP/bin/php/php5.3.6/bin:./bin:/Users/roberto/.dotfiles/bin:/Users/roberto/.rbenv/shims:/Users/roberto/.rbenv/bin:/usr/local/sbin:$PATH
export PATH=./bin:/Users/roberto/.dotfiles/bin:/Users/roberto/.rbenv/shims:/Users/roberto/.rbenv/bin:/usr/local/sbin:$PATH


0 comments on commit 8ec5115

Please sign in to comment.