1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00
Files
dotfiles/.vimrc
Michiel Scholten 1e2d963805 Nice vim plugins
2014-06-15 11:52:40 +02:00

83 lines
2.3 KiB
VimL

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'majutsushi/tagbar'
Plugin 'Shougo/unite.vim'
" Nice statusbar
Plugin 'bling/vim-airline'
Plugin 'bling/vim-bufferline'
" Version control notes in the line number bar
Plugin 'mhinz/vim-signify'
" Think of sensible.vim as one step above 'nocompatible' mode: a universal
" set of defaults that (hopefully) everyone can agree on.
Plugin 'tpope/vim-sensible'
" Nice colour scheme
Plugin 'jnurmine/Zenburn.git'
" Python autocompletion
Plugin 'davidhalter/jedi-vim'
" Handy Markdown stuff
Plugin 'tpope/vim-markdown'
" Pandoc, for stuff like autocompletion of citations from bibtex, other LaTeX
" stuff
Plugin 'vim-pandoc/vim-pandoc'
" Distraction-free writing, start with <Leader>V (\V)
Plugin 'mikewest/vimroom'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
set number
syntax on
" enable words completion
set dictionary+=/usr/share/dict/words
" use ctrl-n ctrl-n instead of ctrl-x ctrl-k
set complete-=k complete+=k
" 2006-04-24
set smartcase
" 2008-04-14 with the if-statement added at 2008-11-19
if &term == "xterm" || &term == "screen-bce" || &term == "screen-256color"
set t_Co=256
colorscheme zenburn
" create a bar for airline
set laststatus=2
let g:airline_powerline_fonts = 1
endif
" paste and autoindent
set pastetoggle=<F10>
map <Leader>jt <Esc>:%!json_xs -f json -t json-pretty<CR>
" 2014-01-29 some sane Python settings
autocmd FileType python set tabstop=4
autocmd FileType python set shiftwidth=4
autocmd FileType python set smarttab
autocmd FileType python set expandtab
autocmd FileType python set softtabstop=4
autocmd FileType python set autoindent
" 2014-01-29 some sane PHP settings
autocmd FileType php set tabstop=4
autocmd FileType php set shiftwidth=4
autocmd FileType php set smarttab
autocmd FileType php set expandtab
autocmd FileType php set softtabstop=4
autocmd FileType php set autoindent
" 2014-03-21 some sane LaTeX settings
autocmd FileType tex set tabstop=4
autocmd FileType tex set shiftwidth=4
autocmd FileType tex set smarttab
autocmd FileType tex set expandtab
autocmd FileType tex set softtabstop=4
autocmd FileType tex set autoindent