X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/22611512c7fa02c0242bf11d401d84667e548f53..37cd1e870586a430e5b0ff4988107209332f1f8f:/vim/.vimrc diff --git a/vim/.vimrc b/vim/.vimrc index 053cab4..ff5a063 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -1,34 +1,33 @@ -" ==== ==== -set nocompatible " be iMproved, required -filetype off " required - -" set the runtime path to include Vundle and initialize -set rtp+=~/.vim/bundle/Vundle.vim -call vundle#begin() - -" let Vundle manage Vundle, required -Plugin 'gmarik/Vundle.vim' -Plugin 'kien/rainbow_parentheses.vim' -Plugin 'hsanson/vim-android' -Plugin 'scrooloose/nerdcommenter' -Plugin 'SirVer/ultisnips' -Plugin 'honza/vim-snippets' -Plugin 'kien/ctrlp.vim' -Plugin 'tacahiroy/ctrlp-funky' -Plugin 'Raimondi/delimitMate' -Plugin 'Yggdroot/indentLine' -"Plugin 'tpope/vim-fugitive' -Plugin 'airblade/vim-gitgutter' -"Plugin 'altercation/vim-colors-solarized' -Plugin 'terryma/vim-multiple-cursors' -Plugin 'elzr/vim-json' -Plugin 'lervag/vim-latex' -call vundle#end() " required -" ==== ==== +"set nocompatible " be iMproved, required +"filetype off " required + +call plug#begin('~/.vim/plugged') + +Plug 'kien/rainbow_parentheses.vim' +"Plug 'hsanson/vim-android' +Plug 'scrooloose/nerdcommenter' +Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' +"Plug 'kien/ctrlp.vim' +"Plug 'tacahiroy/ctrlp-funky' +Plug 'Raimondi/delimitMate' +Plug 'Yggdroot/indentLine' +"Plug 'tpope/vim-fugitive' +Plug 'airblade/vim-gitgutter' +"Plug 'altercation/vim-colors-solarized' +Plug 'terryma/vim-multiple-cursors' +"Plug 'elzr/vim-json' +"Plug 'lervag/vim-latex' +Plug 'tpope/vim-surround' +Plug 'rust-lang/rust.vim' +Plug 'phildawes/racer' +Plug 'whatyouhide/vim-gotham' + +call plug#end() + " Use the Solarized Dark theme set background=dark -"colorscheme solarized +colorscheme gotham " Make Vim more useful set nocompatible @@ -239,6 +238,12 @@ let &t_EI = "\]50;CursorShape=0\x7" set pastetoggle=t -set conceallevel=0 -let g:vim_json_syntax_conceal = 0 -let g:indentLine_noConcealCursor="" +"set conceallevel=0 +"let g:vim_json_syntax_conceal = 0 +"let g:indentLine_noConcealCursor="" +" latex mode settings +let g:Tex_DefaultTargetFormat = "pdf" + +set hidden +let g:racer_cmd = "racer" +let $RUST_SRC_PATH=expand('~/misc/rs/rust/src/')