kitty/session.vim

18 lines
473 B
VimL
Raw Normal View History

2016-10-14 10:03:27 +03:00
" Scan the following dirs recursively for tags
let g:project_tags_dirs = ['kitty', 'kittens']
let g:syntastic_python_checkers = ['mypy', 'flake8']
let g:syntastic_python_mypy_exec = './mypy-editor-integration'
2016-10-14 10:03:27 +03:00
let g:ycm_python_binary_path = 'python3'
set wildignore+==template.py
set wildignore+=tags
2017-11-20 10:26:10 +03:00
set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=0
set smarttab
2020-04-30 20:42:37 +03:00
python3 <<endpython
2016-10-14 10:03:27 +03:00
import sys
sys.path.insert(0, os.path.abspath('.'))
import kitty
endpython