mirror of
https://github.com/kovidgoyal/kitty.git
synced 2025-12-13 20:36:22 +01:00
15 lines
324 B
VimL
15 lines
324 B
VimL
" Scan the following dirs recursively for tags
|
|
let g:project_tags_dirs = ['kitty', 'kittens', 'tools']
|
|
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
|