aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.vim/ftdetect
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-02-25 14:47:03 +0300
committerYaroslav <contact@yaroslavps.com>2020-02-25 14:47:03 +0300
commitd16e82d468eb0d5bb1e662ac4812c0ca6fc0fc64 (patch)
tree6575864b75dc0c9de61b5d523e77dbcff785c998 /dotfiles/.vim/ftdetect
parent69d47128244a06ee28e4b43191ef9216b04bce13 (diff)
downloadvimrice-d16e82d468eb0d5bb1e662ac4812c0ca6fc0fc64.tar.gz
vimrice-d16e82d468eb0d5bb1e662ac4812c0ca6fc0fc64.zip
reorganized repo to be easier to use with GNU stow; added script to stow
Diffstat (limited to 'dotfiles/.vim/ftdetect')
-rw-r--r--dotfiles/.vim/ftdetect/node.vim8
-rw-r--r--dotfiles/.vim/ftdetect/toml.vim2
2 files changed, 10 insertions, 0 deletions
diff --git a/dotfiles/.vim/ftdetect/node.vim b/dotfiles/.vim/ftdetect/node.vim
new file mode 100644
index 0000000..ed50604
--- /dev/null
+++ b/dotfiles/.vim/ftdetect/node.vim
@@ -0,0 +1,8 @@
+function! s:isNode()
+ let shebang = getline(1)
+ if shebang =~# '^#!.*/bin/env\s\+node\>' | return 1 | en
+ if shebang =~# '^#!.*/bin/node\>' | return 1 | en
+ return 0
+endfunction
+
+au BufRead,BufNewFile * if !did_filetype() && s:isNode() | setf javascript | en
diff --git a/dotfiles/.vim/ftdetect/toml.vim b/dotfiles/.vim/ftdetect/toml.vim
new file mode 100644
index 0000000..568dd82
--- /dev/null
+++ b/dotfiles/.vim/ftdetect/toml.vim
@@ -0,0 +1,2 @@
+" Go dep and Rust use several TOML config files that are not named with .toml.
+autocmd BufNewFile,BufRead *.toml,Gopkg.lock,Cargo.lock,*/.cargo/config,*/.cargo/credentials,Pipfile setf toml