Initial commit

This commit is contained in:
Kovid Goyal
2016-10-14 12:33:27 +05:30
commit de072b3b42
8 changed files with 707 additions and 0 deletions

12
session.vim Normal file
View File

@@ -0,0 +1,12 @@
" Scan the following dirs recursively for tags
let g:project_tags_dirs = ['kitty']
let g:syntastic_python_flake8_exec = 'flake8'
let g:ycm_python_binary_path = 'python3'
set wildignore+==template.py
set wildignore+=tags
python <<endpython
import sys
sys.path.insert(0, os.path.abspath('.'))
import kitty
endpython