Last active
November 2, 2019 22:50
-
-
Save crawftv/b3bffd4017075a0948340a9611135cfc to your computer and use it in GitHub Desktop.
vim python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax enable | |
set nu | |
highlight BadWhitespace ctermbg=red guibg=red | |
au BufNewFile,BufRead *.py | |
\ set fileformat=unix | | |
\ set encoding=utf-8 | | |
\ match BadWhitespace /\s\+$/ | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
filetype indent on | |
set autoindent | |
let python_highlight_all = 1 | |
set clipboard=unnamed | |
set relativenumber | |
colo zellner |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment