From 4ee282673ed9d67569a23fe8acefce90dde22a3d Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Thu, 26 Mar 2020 09:48:30 -0400 Subject: [PATCH] Making a mess with vimrc things probably --- vimrc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/vimrc b/vimrc index f29f767..7c58a32 100644 --- a/vimrc +++ b/vimrc @@ -22,8 +22,15 @@ set smartcase set tabstop=4 set textwidth=67 +if has("persistent_undo") + set undodir=~/.vim/_undo// + set undofile +endif + +au BufRead,BufNewFile Pipfile setfiletype toml au BufRead,BufNewFile *.gcfg setfiletype gitconfig au QuickFixCmdPost *grep* cwindow +au BufWritePre *.py execute ':Black' map ,t :w map ,- :nohl @@ -39,6 +46,13 @@ let g:vim_markdown_folding_disabled = 1 let g:vim_markdown_frontmatter = 1 let g:yapf_style = "pep8" +if has("python3") + python3 from powerline.vim import setup as powerline_setup + python3 powerline_setup() + python3 del powerline_setup +endif + call pathogen#infect() colo dracula +hi Comment cterm=NONE ctermfg=DarkRed gui=NONE guifg=red2