aboutsummaryrefslogtreecommitdiff
path: root/.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 /.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 '.vim/ftdetect')
-rw-r--r--.vim/ftdetect/node.vim8
-rw-r--r--.vim/ftdetect/toml.vim2
2 files changed, 0 insertions, 10 deletions
diff --git a/.vim/ftdetect/node.vim b/.vim/ftdetect/node.vim
deleted file mode 100644
index ed50604..0000000
--- a/.vim/ftdetect/node.vim
+++ /dev/null
@@ -1,8 +0,0 @@
-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/.vim/ftdetect/toml.vim b/.vim/ftdetect/toml.vim
deleted file mode 100644
index 568dd82..0000000
--- a/.vim/ftdetect/toml.vim
+++ /dev/null
@@ -1,2 +0,0 @@
-" 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