summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorRobin Krahl <me@robin-krahl.de>2016-06-17 00:22:55 +0200
committerRobin Krahl <me@robin-krahl.de>2016-06-17 00:22:55 +0200
commit59f084e3de7c4b23dcf50b1e09f4cb55a11ede0b (patch)
treeb7b538916e0cb3687ff9b73e00037176cf29d32d /.vimrc
parent31a73f5e9ab793eb2e0f6f7541c62a041cb8d068 (diff)
downloaddotfiles-59f084e3de7c4b23dcf50b1e09f4cb55a11ede0b.tar.gz
dotfiles-59f084e3de7c4b23dcf50b1e09f4cb55a11ede0b.tar.bz2
update vim configuration and move .vimrc to .vim/vimrc
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc29
1 files changed, 0 insertions, 29 deletions
diff --git a/.vimrc b/.vimrc
deleted file mode 100644
index 12f9eac..0000000
--- a/.vimrc
+++ /dev/null
@@ -1,29 +0,0 @@
-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"