session.vim 324 B

123456789101112131415
  1. " Scan the following dirs recursively for tags
  2. let g:project_tags_dirs = ['kitty', 'kittens', 'tools']
  3. set wildignore+==template.py
  4. set wildignore+=tags
  5. set expandtab
  6. set tabstop=4
  7. set shiftwidth=4
  8. set softtabstop=0
  9. set smarttab
  10. python3 <<endpython
  11. import sys
  12. sys.path.insert(0, os.path.abspath('.'))
  13. import kitty
  14. endpython