summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2017-05-22 02:03:55 +0200
committerAhmed Abdelhalim <[email protected]>2017-05-22 02:03:55 +0200
commit6e62db15971426fc44885b48f93314f6fb2c2682 (patch)
tree0bcb924ee1de3ce12685cc8c64f46434da3a3cef /.vimrc
parent522f5931792365674de494b2ac3d490b820d01cd (diff)
CHORE: clean vimrc file deps and configs
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc40
1 files changed, 23 insertions, 17 deletions
diff --git a/.vimrc b/.vimrc
index a632585..f76ebf6 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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