Skip to content

Commit

Permalink
New shiny plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
voldmar committed Jul 20, 2012
1 parent b3b307e commit 535ec99
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ Bundle 'majutsushi/tagbar'
Bundle 'Shougo/neocomplcache'
Bundle 'Shougo/neocomplcache-snippets-complete'
Bundle 'voldmar/Visual-Mark'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'AndrewRadev/linediff.vim'
Bundle 'voldmar/vim-powerline'

filetype plugin indent on

Expand Down Expand Up @@ -118,6 +121,7 @@ set wildmenu
syn on
" colorscheme railscasts
let g:solarized_termcolors=256
set background=dark
colorscheme solarized

" let &t_SI = "\<Esc>]50;CursorShape=1\x7"
Expand All @@ -144,6 +148,12 @@ nnoremap <leader>8 :call Flake8()<CR>
nnoremap <leader>a :Ack <C-R><C-W><cr>
nnoremap <leader>A :Ack -w <C-R><C-W><cr>
nnoremap <leader>t :TagbarToggle<CR>
" Ack for the last search.
nnoremap <silent> <leader>/ :execute "Ack! '" . substitute(substitute(substitute(@/, "\\\\<", "\\\\b", ""), "\\\\>", "\\\\b", ""), "\\\\v", "", "") . "'"<CR>
nnoremap <leader>g :GundoToggle<CR>
nnoremap <leader>l :Linediff<CR>
nnoremap <leader>L :LinediffReset<CR>

vnoremap < <gv
vnoremap > >gv
Expand Down Expand Up @@ -252,5 +262,10 @@ sign define SignSymbol linehl=SignColor texthl=SignColor text=»

let g:tagbar_ctags_bin = '/usr/local/bin/ctags'

let g:Powerline_symbols = 'fancy'
let g:Powerline_cache_enabled = 1
call Pl#Theme#ReplaceSegment('tagbar:currenttag', 'tagbar:fullcurrenttag')


" -- EOF -- "

0 comments on commit 535ec99

Please sign in to comment.