From: Philippe Hürlimann
Date: Wed, 25 Nov 2015 21:04:09 +0000 (+0100) Subject: god I hate it when I make changes and don't commit them X-Git-Url: https://git.hurlimann.org/?a=commitdiff_plain;h=9b4b7b97fe16dbf24f831d48801baf5cc4d80841;p=vimfiles.git god I hate it when I make changes and don't commit them --- diff --git a/ftplugin/c.vim b/ftplugin/c.vim index b890c63..c69051e 100644 --- a/ftplugin/c.vim +++ b/ftplugin/c.vim @@ -1,6 +1,3 @@ -" Make sure that clang_complete uses the clang library -" and not the executable -let g:clang_library_path="/usr/lib/llvm" " open quickfix window on error let g:clang_complete_copen=1 " automatically select the first entry in the popup menu, but diff --git a/vimrc b/vimrc index b677e41..9d7d202 100644 --- a/vimrc +++ b/vimrc @@ -5,43 +5,38 @@ filetype off " make vundle use git:// instead of http{,s}:// " makes things a lot faster let g:vundle_default_git_proto = 'git' -set rtp+=~/.vim/bundle/vundle/ -call vundle#rc() +set rtp+=~/.vim/bundle/Vundle.vim/ +call vundle#begin() " Bundles to install " let Vundle manage Vundle -Bundle 'gmarik/vundle' +Plugin 'gmarik/Vundle.vim' " Plugins " The ones that I currently don't use are commented out -Bundle 'altercation/vim-colors-solarized' -Bundle 'ap/vim-css-color' -Bundle 'avakhov/vim-yaml' -Bundle 'eagletmt/ghcmod-vim' -Bundle 'fmoralesc/vim-pad' -Bundle 'fs111/pydoc.vim' -Bundle 'kien/ctrlp.vim' -Bundle 'leshill/vim-json' -Bundle 'Lokaltog/vim-powerline' -Bundle 'majutsushi/tagbar' -Bundle 'mileszs/ack.vim' -Bundle 'Nemo157/glsl.vim' -Bundle 'nsf/gocode', {'rtp': 'vim/'} -Bundle 'nvie/vim-flake8' -Bundle 'othree/html5.vim' -Bundle 'pbrisbin/html-template-syntax' -Bundle 'Raimondi/delimitMate' -Bundle 'Rip-Rip/clang_complete' -Bundle 'scrooloose/nerdcommenter' -Bundle 'Shougo/vimproc' -Bundle 'SirVer/ultisnips' -Bundle 'thinca/vim-localrc' -Bundle 'tpope/vim-fugitive' -Bundle 'tpope/vim-repeat' -Bundle 'tpope/vim-surround.git' -Bundle 'ujihisa/neco-ghc' -Bundle 'matchit.zip' -Bundle 'slimv.vim' +Plugin 'ap/vim-css-color' +Plugin 'avakhov/vim-yaml' +Plugin 'davidhalter/jedi-vim' +Plugin 'eagletmt/ghcmod-vim' +Plugin 'eagletmt/neco-ghc' +Plugin 'kien/ctrlp.vim' +Plugin 'kovisoft/slimv' +Plugin 'leshill/vim-json' +Plugin 'majutsushi/tagbar' +Plugin 'matchit.zip' +Plugin 'nsf/gocode', {'rtp': 'vim/'} +Plugin 'othree/html5.vim' +Plugin 'pbrisbin/html-template-syntax' +Plugin 'Raimondi/delimitMate' +Plugin 'Rip-Rip/clang_complete' +Plugin 'scrooloose/nerdcommenter' +Plugin 'Shougo/vimproc' +Plugin 'thinca/vim-localrc' +Plugin 'tpope/vim-fugitive' +Plugin 'tpope/vim-repeat' +Plugin 'tpope/vim-surround.git' + +call vundle#end() " set leader and local leader let mapleader = "," @@ -69,9 +64,9 @@ filetype plugin indent on " colors " solarized.vim exists -let g:solarized_termcolors=256 -colorscheme solarized -set background=dark +"let g:solarized_termcolors=256 +"colorscheme solarized +"set background=dark syntax on @@ -88,9 +83,6 @@ set incsearch set ignorecase set smartcase -" folding -set foldmethod=syntax - " tab settings set expandtab set smarttab