From 0893f0b3041208d31a270a9f51bf676b0c81c5f1 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Tue, 20 Mar 2018 10:24:09 -0400 Subject: [PATCH] Swapped to the latest version in use --- vim/vimrc | 201 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 105 insertions(+), 96 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 2f80cd3..6144a3a 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1,118 +1,65 @@ -set nocompatible +set nocompatible " required set splitright -filetype off -" Handy hack to force a write using sudo when you forget to sudo vi +filetype off " required +" 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= -set incsearch -set encoding=utf8 -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 pastetoggle= + +set incsearch +set encoding=utf-8 set wrap set linebreak set nolist -" let Vundle manage Vundle -" required! -Plugin 'gmarik/vundle' -Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'} -"Plugin 'bling/vim-airline' -Plugin 'tpope/vim-fugitive' +" set the runtime path to include Vundle and initialize +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +" alternatively, pass a path where Vundle should install plugins +"call vundle#begin('~/some/path/here') + +" let Vundle manage Vundle, required +Plugin 'gmarik/Vundle.vim' +Plugin 'Valloric/YouCompleteMe' +Plugin 'vim-syntastic/syntastic' +Plugin 'nvie/vim-flake8' +Plugin 'python-mode/python-mode' +Plugin 'airblade/vim-gitgutter' Plugin 'scrooloose/nerdtree' -Plugin 'klen/python-mode' +Plugin 'powerline/powerline', {'rtp': 'powerline/bindings/vim'} +Plugin 'flazz/vim-colorschemes' Plugin 'davidhalter/jedi-vim' Plugin 'ervandew/supertab' -Plugin 'Rykka/riv.vim' -Plugin 'Rykka/clickable.vim' +" Bind zonefile stuff Plugin 'seveas/bind.vim' -Plugin 'altercation/vim-colors-solarized' -Plugin 'flazz/vim-colorschemes' +" extline extends rst stuff Plugin 'drmikehenry/vim-extline' Plugin 'tpope/vim-surround.git' Plugin 'ryanoasis/vim-webdevicons' -Plugin 'terryma/vim-multiple-cursors' -Plugin 'Valloric/YouCompleteMe' Plugin 'brookhong/DBGPavim' -Plugin 'tbabej/taskwiki' -Plugin 'airblade/vim-gitgutter' -filetype plugin indent on +" Add all your plugins here (note older versions of Vundle used Bundle instead +" of Plugin) -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 -"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 -let g:Powerline_symbols = 'fancy' -let g:airline_powerline_fonts = 1 -set laststatus=2 - -"NerdTree map to +" All of your Plugins must be added before the following line +call vundle#end() " required +filetype plugin indent on " required +"Powerline setup +"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 +let g:Powerline_symbols = 'fancy' +let g:airline_powerline_fonts = 1 +set laststatus=2 + +"NerdTree map to map :NERDTreeToggle -" Python-mode -" Activate rope -" Keys: -" K Show python docs -" Rope autocomplete -" g Rope goto definition -" d Rope show documentation -" f Rope find occurrences -" 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 = '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 -"setlocal spell spelllang=en_us -set mouse=a -"Make python-friendly tabs +"Make python-friendly tabs set tabstop=4 set shiftwidth=4 set smarttab @@ -120,6 +67,68 @@ set softtabstop=4 set autoindent let &colorcolumn="80,".join(range(81,999),",") -let g:dbgPavimPort = 9000 -let g:dbgPavimBreakAtEntry = 0 +augroup vimrc_autocmds + autocmd! + "highlight characters past col 80 + autocmd FileType python highlight Excess ctermbg=DarkGrey guibg=Black + autocmd FileType python match Excess /\%80v.*/ + autocmd FileType python set nowrap +augroup END + +set mouse=a + +" python-mode settings +" Python-mode +" Activate rope +" Keys: +" K Show python docs +" Rope autocomplete +" g Rope goto definition +" d Rope show documentation +" f Rope find occurrences +" 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" +let g:pymode_lint_checker = "flake8,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 = '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 + +let g:dbgPavimPort = 9000 +let g:dbgPavimBreakAtEntry = 0 let g:dbgPavimOnce = 1 + +let python_highlight_all=1 +syntax on