Skip to content

Commit

Permalink
latest and greatest
Browse files Browse the repository at this point in the history
  • Loading branch information
vinit Kumar committed Apr 18, 2015
1 parent bd389bb commit b7dd186
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions bundle/vim-trailing-whitespace
Submodule vim-trailing-whitespace added at d4ad27
20 changes: 16 additions & 4 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Plugin 'whatyouhide/vim-gotham'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate'

Plugin 'bronson/vim-trailing-whitespace'

""""""""""""""""""""""""""""""
" vim-powerline symbols
Expand All @@ -42,9 +42,6 @@ let g:airline_left_sep = '⮀'
let g:airline_left_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_right_alt_sep = ''
let g:airline_symbols.branch = ''
let g:airline_symbols.readonly = ''
let g:airline_symbols.linenr = ''


"tagbar related settings
Expand Down Expand Up @@ -224,4 +221,19 @@ autocmd FileType html set sw=2
autocmd FileType html set ts=2
autocmd FileType html set sts=2

" No backup
set nobackup
set noswapfile

" Paste large amount of text in vim
set pastetoggle=<F2>

" Save key stroke
nnoremap ; :
" Space the final frontier
let mapleader = "\<Space>"

nnoremap <Leader>o :CtrlP<CR>
nnoremap <Leader>w :w<CR>

0 comments on commit b7dd186

Please sign in to comment.