1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 19:40:29 +01:00

Removed pyflakes-vim, switched to my version of pythonhelper

This commit is contained in:
2016-09-01 21:46:53 +02:00
parent 958453acb6
commit 5be6a2e281

15
vimrc
View File

@@ -5,7 +5,6 @@ set nocompatible "VIM over VI
call plug#begin('~/.vim/bundle') call plug#begin('~/.vim/bundle')
Plug 'Finkregh/pythonhelper'
Plug 'Rykka/riv.vim' Plug 'Rykka/riv.vim'
Plug 'SirVer/ultisnips' Plug 'SirVer/ultisnips'
Plug 'Valloric/MatchTagAlways' Plug 'Valloric/MatchTagAlways'
@@ -13,12 +12,13 @@ Plug 'davidhalter/jedi-vim'
Plug 'ervandew/taglisttoo' Plug 'ervandew/taglisttoo'
Plug 'fs111/pydoc.vim' Plug 'fs111/pydoc.vim'
Plug 'gryf/mark' Plug 'gryf/mark'
Plug 'gryf/pythonhelper'
Plug 'gryf/zoom.vim' Plug 'gryf/zoom.vim'
Plug 'hallison/vim-markdown' Plug 'hallison/vim-markdown'
Plug 'honza/vim-snippets' Plug 'honza/vim-snippets'
Plug 'https://repo.or.cz/r/vcscommand.git' Plug 'https://repo.or.cz/r/vcscommand.git'
Plug 'kazuyukitanimura/jsbeautify' Plug 'kazuyukitanimura/jsbeautify'
Plug 'kevinw/pyflakes-vim' " Plug 'kevinw/pyflakes-vim' " deprecated, use syntastic instead
Plug 'kien/ctrlp.vim' Plug 'kien/ctrlp.vim'
" Plug 'majutsushi/tagbar' " Plug 'majutsushi/tagbar'
Plug 'gryf/tagbar', {'branch': 'show_tag_kind2'} Plug 'gryf/tagbar', {'branch': 'show_tag_kind2'}
@@ -52,6 +52,9 @@ Plug 'vimwiki/vimwiki'
Plug 'will133/vim-dirdiff' Plug 'will133/vim-dirdiff'
Plug 'yegappan/grep' Plug 'yegappan/grep'
"in development
Plug '~/Devel/vim/kickass-vim/'
call plug#end() call plug#end()
" }}} " }}}
@@ -160,7 +163,7 @@ autocmd BufWritePre * :call <SID>StripTrailingWhitespaces(0)
"set correct filetype for tmux "set correct filetype for tmux
autocmd BufRead *.tmux.conf set filetype=tmux autocmd BufRead *.tmux.conf set filetype=tmux
autocmd BufRead *.mako set filetype=mako autocmd BufRead *.mako set filetype=mako
autocmd BufRead *.ass set filetype=kickass autocmd BufRead *.ass, *asm set filetype=kickass
" make the current line highlighted only on current window " make the current line highlighted only on current window
autocmd WinEnter * setlocal cursorline autocmd WinEnter * setlocal cursorline
@@ -190,6 +193,10 @@ endif
"KickAssembler {{{2 "KickAssembler {{{2
let g:kickass_path = '/home/gryf/c64/PCTools/Cross-assemblers/KickAssembler/KickAss.jar' let g:kickass_path = '/home/gryf/c64/PCTools/Cross-assemblers/KickAssembler/KickAss.jar'
"}}} "}}}
" Calendar {{{2
let g:calendar_monday = 1
let g:calendar_weeknm = 1
"}}}
"CtrlP {{{2 "CtrlP {{{2
let g:ctrlp_custom_ignore = { let g:ctrlp_custom_ignore = {
\ 'dir': '\.git$\|\.hg$\|\.svn$', \ 'dir': '\.git$\|\.hg$\|\.svn$',
@@ -492,8 +499,6 @@ function <SID>CreateScratch()
new|setl bt=nofile bh=wipe nobl new|setl bt=nofile bh=wipe nobl
return "" return ""
endfunction endfunction
"Toggle
"}}} "}}}
" GUI: detect graphics mode, set colorscheme {{{ " GUI: detect graphics mode, set colorscheme {{{
if has('gui_running') if has('gui_running')