Files
myvim/.vimrc_template

59 lines
1.0 KiB
Plaintext

set nocompatible
"Vundle stuff
"{{{
filetype off
"Unix
set rtp+=$HOME/.vim/bundle/Vundle.vim
call vundle#begin()
"Win32
"set rtp+=$HOME/vimfiles/bundle/Vundle.vim/
"call vundle#begin($HOME/vimfiles/bundle/)
"Plugin Manager
Plugin 'VundleVim/Vundle.vim'
"Autocomplete (choose one)
" Plugin 'Valloric/YouCompleteMe'
" Plugin 'ajh17/VimCompletesMe'
"Stuff useful everywhere
Plugin 'scrooloose/syntastic'
Plugin 'scrooloose/nerdtree'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-eunuch'
Plugin 'majutsushi/tagbar'
Plugin 'jceb/vim-orgmode'
"Python
Plugin 'vim-python/python-syntax'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'tmhedberg/SimpylFold'
"Latex
" Plugin 'LaTeX-Box-Team/LaTeX-Box'
"Weird other langs
" Plugin 'neovimhaskell/haskell-vim'
" Plugin 'cespare/vim-toml'
" Plugin 'rust-lang/rust.vim'
" Plugin 'tikhomirov/vim-glsl'
call vundle#end()
"}}}
"Local settings
"{{{
set guifont=JetBrains\ Mono\ 12
"When on remote terminal this incites rage
set mouse=a
if !empty($DISPLAY)
colorscheme snowhite
else
colorscheme pitchblack
endif
"}}}