diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-08-10 19:46:27 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-08-10 19:46:27 +0300 |
commit | f030afd547a56ce3d6156a0a92dddaae275ee1d4 (patch) | |
tree | 023a5751169cc6ffdec1af998d703b5b8bcdae9f /dotfiles/.local/share/nvim/site/ftdetect | |
parent | 812bcaaf2622dc27310e8579c181394cbc68f7a2 (diff) | |
download | vimrice-f030afd547a56ce3d6156a0a92dddaae275ee1d4.tar.gz vimrice-f030afd547a56ce3d6156a0a92dddaae275ee1d4.zip |
simplify vim rice: use vimplug for managing plugins
Diffstat (limited to 'dotfiles/.local/share/nvim/site/ftdetect')
-rw-r--r-- | dotfiles/.local/share/nvim/site/ftdetect/node.vim | 8 | ||||
-rw-r--r-- | dotfiles/.local/share/nvim/site/ftdetect/toml.vim | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/dotfiles/.local/share/nvim/site/ftdetect/node.vim b/dotfiles/.local/share/nvim/site/ftdetect/node.vim deleted file mode 100644 index ed50604..0000000 --- a/dotfiles/.local/share/nvim/site/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/dotfiles/.local/share/nvim/site/ftdetect/toml.vim b/dotfiles/.local/share/nvim/site/ftdetect/toml.vim deleted file mode 100644 index 568dd82..0000000 --- a/dotfiles/.local/share/nvim/site/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 |