kitty/session.vim
Kovid Goyal cc1336a616
More typing work
Also use a mypy based linter when editing
2020-03-08 11:02:14 +05:30

17 lines
401 B
VimL

" Scan the following dirs recursively for tags
let g:project_tags_dirs = ['kitty', 'kittens']
let g:syntastic_python_checkers = ['pylama']
let g:ycm_python_binary_path = 'python3'
set wildignore+==template.py
set wildignore+=tags
set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=0
set smarttab
python <<endpython
import sys
sys.path.insert(0, os.path.abspath('.'))
import kitty
endpython