Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessio Linares committed Aug 25, 2015
1 parent 7b2dcef commit 26447cf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gvimrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
set guifont=Liberation\ Mono\ for\ Powerline:h13
17 changes: 14 additions & 3 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ set cursorline " highlight the current line
set fileformat=unix " unix file format by default
set fileformats=unix,dos,mac " available formats
set listchars=tab:›\ ,trail:•,extends:#,nbsp:. " Highlight problematic whitespace
set nowrap " Continue line outside of view
set colorcolumn=80 " set ruler at 80

" color scheme
colorscheme solarized
Expand Down Expand Up @@ -239,9 +241,16 @@ nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>
" using tabs
noremap t :tabnew<cr> " tn to open a new tab
noremap K :tabnext<cr> " ALT + l next tab
noremap J :tabprevious<cr> " ALT + h previous tab
nnoremap th :tabfirst<CR>
nnoremap tj :tabnext<CR>
nnoremap tk :tabprev<CR>
nnoremap tl :tablast<CR>
nnoremap tt :tabedit<Space>
nnoremap tn :tabnew<Space>
nnoremap tm :tabm<Space>
nnoremap tc :tabclose<CR>
nnoremap <S-h> gT
nnoremap <S-l> gt
" Better colors for EasyMotion
hi link EasyMotionTarget ErrorMsg
Expand Down Expand Up @@ -308,3 +317,5 @@ function EnterOrIndentTag()
endfunction

inoremap <expr> <Enter> EnterOrIndentTag()
let g:minimap_highlight='Visual'
3 changes: 2 additions & 1 deletion vundle-plugins
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,15 @@ Bundle 'Raimondi/delimitMate'
Bundle 'tpope/vim-repeat'
Bundle 'kien/rainbow_parentheses.vim'
Bundle 'tpope/vim-fugitive'
Bundle 'vim-scripts/YankRing.vim'
" Bundle 'vim-scripts/YankRing.vim'

" Misc
Bundle 'xolox/vim-misc'
Bundle 'Keithbsmiley/gist.vim'
Bundle 'scrooloose/syntastic'
Bundle 'bling/vim-airline'
Plugin 'suan/vim-instant-markdown'
Plugin 'severin-lemaignan/vim-minimap'

" Git
Plugin 'airblade/vim-gitgutter'

0 comments on commit 26447cf

Please sign in to comment.