summaryrefslogtreecommitdiff
path: root/.vimrc
blob: 12f9eac7de20484b1b95ee2c4b3d527cbae82c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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"