2025-08-10 20:24:22 +00:00

17 lines
323 B
VimL

if exists(':AsyncRun')
nnoremap <buffer><silent> <F9> :<C-U>AsyncRun python -u "%"<CR>
endif
" Do not wrap Python source code.
set nowrap
set sidescroll=5
set sidescrolloff=2
set colorcolumn=100
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
nnoremap <buffer><silent> <space>f <cmd>silent !black %<CR>