kitty/session.vim
Kovid Goyal 15524ee0fb
...
2023-01-10 19:41:46 +05:30

21 lines
565 B
VimL

" Scan the following dirs recursively for tags
let g:project_tags_dirs = ['kitty', 'kittens', 'tools']
if exists('g:ale_linters')
let g:ale_linters['python'] = ['mypy', 'ruff --no-update-check']
else
let g:ale_linters = {'python': ['mypy', 'ruff --no-update-check']}
endif
let g:ale_python_mypy_executable = './mypy-editor-integration'
set wildignore+==template.py
set wildignore+=tags
set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=0
set smarttab
python3 <<endpython
import sys
sys.path.insert(0, os.path.abspath('.'))
import kitty
endpython