Add instructions for setting filetype in Vim

pull/3157/head
Lyndsy Simon 5 years ago
parent f341befacb
commit d9c45819a3

@ -10,4 +10,18 @@ draft: true
* eslint-plugin-svelte3
* svelte-vscode
* associating .svelte files with HTML in VSCode, Sublime, Atom, etc etc etc
* associating .svelte files with HTML in VSCode, Sublime, Atom, etc etc etc
## Vim/Neovim
To treat all `*.svelte` files as HTML, add the following line to your `init.vim`:
au! BufNewFile,BufRead *.svelte set ft=html
To temporarily turn on HTML syntax highlighting for the current buffer, use:
:set ft=html
To set the filetype for a single file, use a [modeline](https://vim.fandom.com/wiki/Modeline_magic):
<!-- vim: set ft=html :-->

Loading…
Cancel
Save