dotfiles/vim/vimrc

126 lines
3.3 KiB
VimL
Raw Normal View History

2014-10-24 22:48:44 -04:00
set nocompatible
set splitright
filetype off
" Handy hack to force a write using sudo when you forget to sudo vi
cmap w!! w !sudo tee > /dev/null %
set rtp+=~/.vim/bundle/vundle/
set pastetoggle=<F10>
2015-02-26 14:47:21 -05:00
set incsearch
2015-12-27 12:22:18 -05:00
set encoding=utf8
2014-10-24 22:48:44 -04:00
2016-12-12 23:06:29 -05:00
call vundle#rc()
"We are going to try the wrapping functions. We'll see how that works
"Python has nowrap set, so this generally shouldn't suck
set wrap
set linebreak
set nolist
2014-10-24 22:48:44 -04:00
" let Vundle manage Vundle
" required!
Plugin 'gmarik/vundle'
2015-05-08 09:34:02 -04:00
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
"Plugin 'bling/vim-airline'
2014-10-24 22:48:44 -04:00
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdtree'
Plugin 'klen/python-mode'
Plugin 'davidhalter/jedi-vim'
Plugin 'ervandew/supertab'
Plugin 'Rykka/riv.vim'
Plugin 'Rykka/clickable.vim'
Plugin 'seveas/bind.vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'flazz/vim-colorschemes'
Plugin 'drmikehenry/vim-extline'
Plugin 'tpope/vim-surround.git'
2015-12-27 12:22:18 -05:00
Plugin 'ryanoasis/vim-webdevicons'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'Valloric/YouCompleteMe'
2016-12-12 23:06:29 -05:00
Plugin 'brookhong/DBGPavim'
2017-09-18 16:31:26 -04:00
Plugin 'tbabej/taskwiki'
Plugin 'airblade/vim-gitgutter'
2014-10-24 22:48:44 -04:00
filetype plugin indent on
augroup vimrc_autocmds
autocmd!
" highlight characters past column 80
autocmd FileType python highlight Excess ctermbg=DarkGrey guibg=Black
autocmd FileType python match Excess /\%80v.*/
autocmd FileType python set nowrap
augroup END
"Powerline setup
2015-12-27 12:22:18 -05:00
"set guifont=PowerLineSymbols\ DejaVu\ Sans\ Mono\ for\ Powerline\ 9
" set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ Plus\ Nerd\ File\ Types\ 9
set guifont=Sauce\ Code\ Powerline\ Plus\ Nerd\ File\ Types\ 9
" set guifont=Anonymous\ Pro\ for\ Powerline\ Regular/9
2014-10-24 22:48:44 -04:00
let g:Powerline_symbols = 'fancy'
let g:airline_powerline_fonts = 1
2014-10-24 22:48:44 -04:00
set laststatus=2
"NerdTree map to <f2>
map <F2> :NERDTreeToggle<CR>
" Python-mode
" Activate rope
" Keys:
" K Show python docs
" <Ctrl-Space> Rope autocomplete
" <Ctrl-c>g Rope goto definition
" <Ctrl-c>d Rope show documentation
" <Ctrl-c>f Rope find occurrences
" <Leader>b Set, unset breakpoint (g:pymode_breakpoint enabled)
" [[ Jump on previous class or function (normal, visual, operator
" modes)
" ]] Jump on next class or function (normal, visual, operator
" modes)
" [M Jump on previous class or method (normal, visual, operator
" modes)
" ]M Jump on next class or method (normal, visual, operator
" modes)
let g:pymode_rope = 0
" Documentation
let g:pymode_doc = 1
let g:pymode_doc_key = 'K'
"Linting
let g:pymode_lint = 1
let g:pymode_lint_checker = "pyflakes,pep8"
" Auto check on save
let g:pymode_lint_write = 1
" Support virtualenv
let g:pymode_virtualenv = 1
" Enable breakpoints plugin
let g:pymode_breakpoint = 1
let g:pymode_breakpoint_key = '<leader>b'
" syntax highlighting
let g:pymode_syntax = 1
let g:pymode_syntax_all = 1
let g:pymode_syntax_indent_errors = g:pymode_syntax_all
let g:pymode_syntax_space_errors = g:pymode_syntax_all
" Don't autofold code
let g:pymode_folding = 0
let g:riv_fold_level = 0
let g:riv_fold_auto_update = 0
colorscheme jellybeans
2016-12-12 23:06:29 -05:00
"setlocal spell spelllang=en_us
set mouse=a
"Make python-friendly tabs
set tabstop=4
set shiftwidth=4
set smarttab
set softtabstop=4
set autoindent
let &colorcolumn="80,".join(range(81,999),",")
let g:dbgPavimPort = 9000
let g:dbgPavimBreakAtEntry = 0
let g:dbgPavimOnce = 1