blob: 811f03af5690d5479addce25dc9146ec7d060271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
" Python vim settings
" Indentation
setlocal expandtab
setlocal tabstop=4
setlocal softtabstop=4
setlocal shiftwidth=4
setlocal textwidth=79
" Don't preserve indentation on empty lines
inoremap <buffer> <CR> <CR>
nnoremap <buffer> o o
nnoremap <buffer> O O
|