aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/vim/my/after/ftplugin/python.vim
blob: edeac06c3135a747102548a656fc980a411d3bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
scriptencoding utf-8


if exists('b:did_ftplugin_python_after')
    finish
endif



FtpluginSetLocal expandtab
FtpluginSetLocal shiftwidth=4
FtpluginSetLocal softtabstop=4

let g:python_highlight_all = v:true

" Overrides the default value: shiftwidth()*2
let g:pyindent_continue = shiftwidth()



let b:did_ftplugin_python_after = 1