From 6d302d1f4c81630f430405091ff5eea5178e1fe7 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 24 Feb 2016 18:11:29 +0100 Subject: add vim configuration --- .vimrc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .vimrc (limited to '.vimrc') diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..12f9eac --- /dev/null +++ b/.vimrc @@ -0,0 +1,29 @@ +set nocompatible +filetype off + +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() +Plugin 'VundleVim/Vundle.vim' +Plugin 'a.vim' +Plugin 'altercation/vim-colors-solarized' +Plugin 'andreasvc/vim-256noir' +Plugin 'cespare/vim-toml' +Plugin 'ctrlpvim/ctrlp.vim' +Plugin 'rust-lang/rust.vim' +Plugin 'tpope/vim-fugitive' +call vundle#end() + +filetype plugin indent on + +runtime! ftplugin/man.vim + +" Status line and numbers +set laststatus=2 +set number + +" Colors +set background=dark +colorscheme 256_noir + +" LaTeX instead of Plain TeX +let g:tex_flavor = "latex" -- cgit v1.2.1