diff options
| -rw-r--r-- | .vimrc | 40 |
1 files changed, 23 insertions, 17 deletions
@@ -6,26 +6,26 @@ 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 'tpope/vim-haml' Plugin 'vim-scripts/bufexplorer.zip' " Plugin 'vim-scripts/matchit.zip' -Plugin 'Valloric/MatchTagAlways' Plugin 'Valloric/YouCompleteMe' +Plugin 'Valloric/MatchTagAlways' Plugin 'scrooloose/nerdcommenter' Plugin 'scrooloose/nerdtree' Plugin 'ctrlpvim/ctrlp.vim' -Plugin 'editorconfig/editorconfig-vim' Plugin 'godlygeek/tabular' Plugin 'SirVer/ultisnips' Plugin 'vim-airline/vim-airline' Plugin 'vim-airline/vim-airline-themes' -Plugin 'kchmck/vim-coffee-script' +" Plugin 'kchmck/vim-coffee-script' Plugin 'airblade/vim-gitgutter' -Plugin 'maksimr/vim-jsbeautify' +" Plugin 'maksimr/vim-jsbeautify' Plugin 'ngmy/vim-rubocop' Plugin 'elzr/vim-json' Plugin 'honza/vim-snippets' @@ -35,8 +35,11 @@ Plugin 'majutsushi/tagbar' " Plugin 'nvie/vim-flake8' Plugin 'junegunn/limelight.vim' " Plugin 'junegunn/goyo.vim' -Plugin 'mustache/vim-mustache-handlebars' +" 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() syntax on @@ -172,17 +175,9 @@ let &colorcolumn="80,".join(range(121,999),",") """""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Plugin maps """""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -"Vim-Coffee" -"=========== -" let coffee_make_options = '--bare' " options passed to coffee -let coffee_compile_vert = 1 " open compiled in vertical buffer -let coffee_watch_vert = 1 " open watched in vertical buffer -let coffee_run_vert = 1 " open run in vertical buffer -" nmap <silent> <leader>cr :CoffeeRun<cr> -" nmap <silent> <leader>cw :CoffeeWatch<cr> -" nmap <silent> <leader>cc :CoffeeCompile<cr> -" nmap <silent> <leader>cl :CoffeeLint<cr> -" nnoremap <silent> <leader>mw :CoffeeWatch<cr> +"YouCompleteMe +"============= +let g:ycm_semantic_triggers = {'elm' : ['.'],} "NerdTree" "========= @@ -253,3 +248,14 @@ nmap <leader>f :Limelight!!<cr> "Tagbar "======= nmap <F8> :TagbarToggle<CR> + +"IndentGuides +"============ +let g:indent_guides_start_level = 2 +let g:indent_guides_guide_size = 1 +let g:indent_guides_auto_colors = 0 +highlight IndentGuidesEven ctermbg=235 + +"ElmVim +"====== +let g:elm_setup_keybindings = 0 |
