diff options
| author | Ahmed Abdelhalim <[email protected]> | 2017-05-26 11:11:28 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2017-05-26 11:11:28 +0200 |
| commit | a0802c62d73bfcb514c2f5686f5d2a12f82a5e38 (patch) | |
| tree | b9bc81ac75f2689f64fce6201255a81f37258f1a /.vimrc | |
| parent | d51892a6013765f6b89891fbbfa19b8fe157f931 (diff) | |
FEAT: better loading of the plugins
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -" Vundle Required Block and plugins +" Plug Required Block and plugins set nocompatible filetype off call plug#begin('~/.vim/bundle') @@ -8,9 +8,9 @@ Plug 'tpope/vim-rails', { 'for': 'ruby' } Plug 'tpope/vim-endwise', { 'for': 'ruby' } " Plug 'tpope/vim-surround' " Plug 'tpope/vim-haml', { 'for': 'haml' } -Plug 'junegunn/gv.vim', { 'on': ['GV', 'GV!'] } +Plug 'junegunn/gv.vim', { 'on': 'GV' } Plug 'junegunn/limelight.vim' -Plug 'junegunn/goyo.vim', { 'for': 'markdown' } +Plug 'junegunn/goyo.vim', { 'on': 'Goyo' } Plug 'vim-scripts/bufexplorer.zip' " Plug 'vim-scripts/matchit.zip' Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } @@ -40,7 +40,7 @@ Plug 'ElmCast/elm-vim', { 'for': 'elm' } call plug#end() syntax on filetype plugin indent on -" End of Vundle Required Block and plugins +" End of Plug Required Block and plugins let mapleader = ';' " define map leader colorscheme xoria256 "set colorscheme |
