Removing whitespace and adding a few aliases

This commit is contained in:
Nick Nisi
2012-04-24 09:14:11 -05:00
parent c4940ae747
commit d941ed4d7f
2 changed files with 7 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
# aliases # aliases
alias ll='ls -l' alias ll='ls -l'
alias ta='tmux attach' alias lld='ls -l | grep ^d'
alias ta='tmux attach -f'
alias rmf='rm -rf' alias rmf='rm -rf'
# custom scripts # custom scripts

10
vimrc
View File

@@ -24,8 +24,8 @@ let g:mapleader = ","
set history=10000 set history=10000
" Tab control " Tab control
set smarttab set smarttab
set expandtab set expandtab
set shiftwidth=4 set shiftwidth=4
set tabstop=4 set tabstop=4
set softtabstop=4 set softtabstop=4
@@ -112,7 +112,7 @@ set tm=500
syntax on syntax on
set background=dark set background=dark
"colorscheme molokai "colorscheme molokai
"colorscheme ir_black "colorscheme ir_black
"colorscheme mango "colorscheme mango
"colorscheme mustang "colorscheme mustang
@@ -312,8 +312,8 @@ let g:Powerline_stl_path_style = 'filename'
" Toggle NERDTree " Toggle NERDTree
nmap <silent> <leader>k :NERDTreeToggle<cr> nmap <silent> <leader>k :NERDTreeToggle<cr>
" expand to the path of the file in the current buffer " expand to the path of the file in the current buffer
nmap <silent> <leader>y :NERDTreeFind<cr> nmap <silent> <leader>y :NERDTreeFind<cr>
" map fuzzyfinder (CtrlP) plugin " map fuzzyfinder (CtrlP) plugin
nmap <silent> <leader>t :CtrlP<cr> nmap <silent> <leader>t :CtrlP<cr>