Skip to content

Commit

Permalink
submodules updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ranman committed Aug 30, 2013
1 parent f5082f4 commit 0fce92f
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitmodules
Expand Up @@ -10,3 +10,15 @@
[submodule ".vim/bundle/nerdtree"]
path = .vim/bundle/nerdtree
url = git@github.com:scrooloose/nerdtree.git
[submodule ".vim/bundle/ack"]
path = .vim/bundle/ack
url = git://github.com/mileszs/ack.vim.git
[submodule ".vim/bundle/command-t"]
path = .vim/bundle/command-t
url = git://github.com/wincent/Command-T
[submodule ".vim/bundle/vim-powerline"]
path = .vim/bundle/vim-powerline
url = git@github.com:Lokaltog/vim-powerline.git
[submodule ".vim/bundle/vim-colors-solarized"]
path = .vim/bundle/vim-colors-solarized
url = git@github.com:altercation/vim-colors-solarized.git
1 change: 1 addition & 0 deletions .vim/bundle/ack
Submodule ack added at f183a3
1 change: 1 addition & 0 deletions .vim/bundle/command-t
Submodule command-t added at 8866bb
1 change: 1 addition & 0 deletions .vim/bundle/vim-colors-solarized
Submodule vim-colors-solarized added at 528a59
1 change: 1 addition & 0 deletions .vim/bundle/vim-powerline
Submodule vim-powerline added at 09c0ce
17 changes: 17 additions & 0 deletions .vimrc
Expand Up @@ -29,6 +29,23 @@ set listchars=tab:>.,trail:.,extends:#,nbsp:.
set encoding=utf-8
set fillchars +=stl:\ ,stlnc:\

let mapleader = ','
map <C-h> <C-w>h
map <C-j> <C-w>j
map <C-k> <C-w>k
map <C-l> <C-w>l
map <leader>l :Align
nmap <leader>a :Ack
nmap <leader>b :CommandTBuffer<CR>
nmap <leader>d :NERDTreeToggle<CR>
nmap <leader>f :NERDTreeFind<CR>
nmap <leader>t :CommandT<CR>
nmap <leader>T :CommandTFlush<CR>:CommandT<CR>
nmap <leader><space> :call whitespace#strip_trailing()<CR>
map <silent> <leader>V :source ~/.vimrc<CR>:filetype detect<CR>:exe ":echo 'vimrc reloaded'"<CR>
let g:ackprg = 'ag --nogroup --column'

if has('autocmd')
autocmd filetype python set expandtab
autocmd filetype html,xml set listchars-=tab:>.
Expand Down
1 change: 1 addition & 0 deletions vim-colors-solarized
Submodule vim-colors-solarized added at 528a59

0 comments on commit 0fce92f

Please sign in to comment.