Merge branch 'master' of github.com:meatballhat/dotfiles

This commit is contained in:
2020-03-26 09:49:18 -04:00
17 changed files with 99 additions and 18 deletions

9
vimrc
View File

@@ -29,6 +29,8 @@ endif
au BufRead,BufNewFile Pipfile setfiletype toml
au BufRead,BufNewFile *.gcfg setfiletype gitconfig
au BufRead,BufNewFile Pipfile setfiletype toml
au BufWritePre *.py execute ':Black'
au QuickFixCmdPost *grep* cwindow
au BufWritePre *.py execute ':Black'
@@ -40,6 +42,13 @@ let g:airline_powerline_fonts = 1
let g:go_fmt_command = "goimports"
let g:python_highlight_all = 1
let g:rustfmt_autosave = 1
let g:shfmt_extra_args = '-i 2'
let g:shfmt_fmt_on_save = 1
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_python_checkers = ['flake8']
let g:terraform_align = 1
let g:terraform_fmt_on_save = 1
let g:vim_markdown_folding_disabled = 1