From 59f084e3de7c4b23dcf50b1e09f4cb55a11ede0b Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Fri, 17 Jun 2016 00:22:55 +0200 Subject: update vim configuration and move .vimrc to .vim/vimrc --- .vim/vimrc | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .vim/vimrc (limited to '.vim/vimrc') diff --git a/.vim/vimrc b/.vim/vimrc new file mode 100644 index 0000000..91025df --- /dev/null +++ b/.vim/vimrc @@ -0,0 +1,44 @@ +" Initialize Vundle for plugin management + +set nocompatible +filetype off + +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() +Plugin 'VundleVim/Vundle.vim' +Plugin 'a.vim' +Plugin 'andreasvc/vim-256noir' +Plugin 'aperezdc/vim-template' +Plugin 'cespare/vim-toml' +Plugin 'ctrlpvim/ctrlp.vim' +Plugin 'godlygeek/tabular' +Plugin 'OmniSharp/omnisharp-vim' +Plugin 'rodjek/vim-puppet' +Plugin 'rust-lang/rust.vim' +Plugin 'scrooloose/syntastic' +Plugin 'tpope/vim-dispatch' +Plugin 'tpope/vim-fugitive' +call vundle#end() + +filetype plugin indent on + +runtime! ftplugin/man.vim + +" Syntax highlighting +syntax on + +" Status line and numbers +set laststatus=2 +set number + +" Colors +set background=dark + +" LaTeX instead of Plain TeX +let g:tex_flavor = "latex" + +" Temporary workaround: csproj indicates a project root +let g:ctrlp_root_markers = ['*.csproj'] + +" Ignore some additional patterns when opening files +set wildignore+=*/tmp/*,*.so,*.swp,*.zip,*/vendor/*,*/node_modules/* -- cgit v1.2.1