My dotfiles
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

24 wiersze
604 B

  1. " Set some sane defaults for snippet files
  2. if exists('b:did_ftplugin')
  3. finish
  4. endif
  5. let b:did_ftplugin = 1
  6. " Fold by syntax, but open all folds by default
  7. setlocal foldmethod=syntax
  8. setlocal foldlevel=99
  9. setlocal commentstring=#%s
  10. setlocal noexpandtab
  11. setlocal autoindent nosmartindent nocindent
  12. " Define match words for use with matchit plugin
  13. " http://www.vim.org/scripts/script.php?script_id=39
  14. if exists("loaded_matchit") && !exists("b:match_words")
  15. let b:match_ignorecase = 0
  16. let b:match_words = '^snippet\>:^endsnippet\>,^global\>:^endglobal\>,\${:}'
  17. let s:set_match_words = 1
  18. endif