diff options
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 81 |
1 files changed, 39 insertions, 42 deletions
@@ -1,47 +1,43 @@ " Vundle Required Block and plugins set nocompatible filetype off -set rtp+=~/.vim/bundle/Vundle.vim -call vundle#begin() - -Plugin 'VundleVim/Vundle.vim' - -Plugin 'editorconfig/editorconfig-vim' -Plugin 'tpope/vim-fugitive' -Plugin 'tpope/vim-rails' -Plugin 'tpope/vim-endwise' -" Plugin 'tpope/vim-surround' -" Plugin 'tpope/vim-haml' -Plugin 'vim-scripts/bufexplorer.zip' -" Plugin 'vim-scripts/matchit.zip' -Plugin 'Valloric/YouCompleteMe' -Plugin 'Valloric/MatchTagAlways' -Plugin 'scrooloose/nerdcommenter' -Plugin 'scrooloose/nerdtree' -Plugin 'ctrlpvim/ctrlp.vim' -Plugin 'godlygeek/tabular' -Plugin 'SirVer/ultisnips' -Plugin 'vim-airline/vim-airline' -Plugin 'vim-airline/vim-airline-themes' -" Plugin 'kchmck/vim-coffee-script' -Plugin 'airblade/vim-gitgutter' -" Plugin 'maksimr/vim-jsbeautify' -Plugin 'ngmy/vim-rubocop' -Plugin 'elzr/vim-json' -Plugin 'honza/vim-snippets' -Plugin 'majutsushi/tagbar' -" Plugin 'szw/vim-ctrlspace' -" Plugin 'vim-ruby/vim-ruby' -" Plugin 'nvie/vim-flake8' -Plugin 'junegunn/limelight.vim' -" Plugin 'junegunn/goyo.vim' -" Plugin 'mustache/vim-mustache-handlebars' -" Plugin 'diepm/vim-rest-console' -Plugin 'nathanaelkane/vim-indent-guides' -Plugin 'mhinz/vim-startify' -Plugin 'ElmCast/elm-vim' - -call vundle#end() +call plug#begin('~/.vim/bundle') +Plug 'editorconfig/editorconfig-vim' +Plug 'tpope/vim-fugitive' +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/limelight.vim' +Plug 'junegunn/goyo.vim', { 'for': 'markdown' } +Plug 'vim-scripts/bufexplorer.zip' +" Plug 'vim-scripts/matchit.zip' +Plug 'Valloric/YouCompleteMe', { 'do': './install.py' } +Plug 'Valloric/MatchTagAlways', { 'for': 'html' } +Plug 'scrooloose/nerdcommenter' +Plug 'scrooloose/nerdtree' +Plug 'ctrlpvim/ctrlp.vim' +Plug 'godlygeek/tabular' +Plug 'SirVer/ultisnips' +Plug 'vim-airline/vim-airline' +Plug 'vim-airline/vim-airline-themes' +" Plug 'kchmck/vim-coffee-script', { 'for': 'coffee' } +Plug 'airblade/vim-gitgutter' +" Plug 'maksimr/vim-jsbeautify', { 'for': 'js' } +Plug 'ngmy/vim-rubocop', { 'for': 'ruby' } +Plug 'elzr/vim-json', { 'for': ['js', 'json'] } +Plug 'honza/vim-snippets' +Plug 'majutsushi/tagbar' +" Plug 'szw/vim-ctrlspace' +" Plug 'vim-ruby/vim-ruby' +" Plug 'nvie/vim-flake8' +" Plug 'mustache/vim-mustache-handlebars' +" Plug 'diepm/vim-rest-console' +Plug 'nathanaelkane/vim-indent-guides' +Plug 'mhinz/vim-startify' +Plug 'ElmCast/elm-vim', { 'for': 'elm' } +call plug#end() syntax on filetype plugin indent on " End of Vundle Required Block and plugins @@ -96,7 +92,7 @@ set noeb vb t_vb= " set cursorline " highlight current line " set nocursorline " don't highlight current line set splitbelow " position the preview window below current windows -set mouse=a "enable mouse movements, default set mouse= +set mouse=a " enable mouse movements, default set mouse= " set vim startup faster if !empty(&viminfo) @@ -259,3 +255,4 @@ highlight IndentGuidesEven ctermbg=235 "ElmVim "====== let g:elm_setup_keybindings = 0 +let g:elm_format_autosave = 0 |
