dgy
/
hexagons
Archived
1
0
Fork 0
This repository has been archived on 2021-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
hexagons/.config/nvim/ftplugin/python.vim

36 lines
1.3 KiB
VimL

" Proper indentation for python files
set fileformat=unix
setlocal softtabstop=4 " Pressing tab during editing operations inserts 4 spaces
setlocal tabstop=4
setlocal shiftwidth=4 " Number of spaces used for each step of an (auto)indent action, e.g. '>>'.
let python_highlight_all=1 " Enable python highlighting
augroup PythonColorColumn
autocmd!
" When a Python file is read or the text changes in normal or insert mode,
" draw a column marking the maximum line length if a line exceeds this length
autocmd BufRead,TextChanged *.py call ShowColumnIfLineTooLong(80)
augroup END
" Color the column marking the lengthLimit when the longest line in the file
" exceeds the lengthLimit
function! ShowColumnIfLineTooLong(lengthLimit)
" See https://stackoverflow.com/questions/2075276/longest-line-in-vim#2982789
let maxLineLength = max(map(getline(1,'$'), 'len(v:val)'))
if maxLineLength > a:lengthLimit
" Draw the vertical line at the first letter that exceeds the limit
execute "setlocal colorcolumn=" . (a:lengthLimit + 1)
else
setlocal colorcolumn=""
endif
endfunction
augroup pystuff
autocmd!
autocmd BufNewFile *.py 0r ~/.config/nvim/templates/py.skeleton
augroup END
" Disable warnings about trailing whitespace for Python files.
let b:ale_warn_about_trailing_whitespace = 0