Skyler Grey | 8fd63d0 | 2022-10-31 00:26:44 +0000 | [diff] [blame^] | 1 | let g:astro_typescript = 'enable' |
| 2 | |
| 3 | let g:closetag_filetypes = 'html,xhtml,phtml,astro' |
| 4 | let g:closetag_xhtml_filetypes = 'xhtml,jsx' |
| 5 | |
| 6 | let g:closetag_emptyTags_caseSensitive = 1 |
| 7 | |
| 8 | let g:closetag_regions = { |
| 9 | \ 'typescript.tsx': 'jsxRegion,tsxRegion', |
| 10 | \ 'javascript.jsx': 'jsxRegion', |
| 11 | \ 'typescriptreact': 'jsxRegion,tsxRegion', |
| 12 | \ 'javascriptreact': 'jsxRegion', |
| 13 | \ } |
| 14 | |
| 15 | let g:closetag_shortcut = '>' |
| 16 | let g:closetag_close_shortcut = '<leader>>' |