White Theme and vim Wordbook

This commit is contained in:
Tuan-Dat Tran
2018-11-20 15:13:51 +01:00
parent 6ffad69d36
commit db834c2d0d
16 changed files with 269 additions and 54 deletions

View File

@@ -0,0 +1,17 @@
" Python settings
" Shortcuts
imap <leader>ifm if<Space>__name__<Space>==<Space>'__main__':<Enter>
" Compiling
map <C-c><C-c> <Esc>:!python %<Enter>
" Use the below highlight group when displaying bad whitespace is desired.
highlight BadWhitespace ctermbg=red guibg=red
" Display tabs at the beginning of a line in Python mode as bad.
au BufRead,BufNewFile *.py,*.pyw match BadWhitespace /^\t\+/
" Make trailing whitespace be flagged as bad.
au BufRead,BufNewFile *.py,*.pyw,*.c,*.h match BadWhitespace /\s\+$/