diff options
author | Teddy Wing | 2019-05-04 11:08:54 +0200 |
---|---|---|
committer | Teddy Wing | 2019-05-04 11:08:54 +0200 |
commit | 7598d1b2986b0879876c627b6c7848cf320c74b5 (patch) | |
tree | c50e30f1e383662e22f9a927180dcb219c0181c5 | |
parent | 7470dd78ccf3dd72567b3a3978f10e51bad901ff (diff) | |
download | dotvim-7598d1b2986b0879876c627b6c7848cf320c74b5.tar.bz2 |
Add ftdetect/typescript.vim
Trying out Typescript in a project. Instead of getting a Typescript Vim
plugin, just use the Javascript syntax highlighter for simplicity.
-rw-r--r-- | ftdetect/typescript.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ftdetect/typescript.vim b/ftdetect/typescript.vim new file mode 100644 index 0000000..166fee0 --- /dev/null +++ b/ftdetect/typescript.vim @@ -0,0 +1 @@ +autocmd BufRead,BufNewFile *.ts set filetype=typescript syntax=javascript |