kitty/session.vim

17 lines
391 B
VimL
Raw Normal View History

2016-10-14 10:03:27 +03:00
" Scan the following dirs recursively for tags
2016-11-18 13:00:59 +03:00
let g:project_tags_dirs = ['kitty']
2016-10-14 10:03:27 +03:00
let g:syntastic_python_flake8_exec = 'flake8'
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
2016-10-14 10:03:27 +03:00
python <<endpython
import sys
sys.path.insert(0, os.path.abspath('.'))
import kitty
endpython