From 71813ad886343a89922888b530faf5f324d48f04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20BENO=C3=8ET?= Date: Sat, 24 Jun 2023 16:01:28 +0200 Subject: [PATCH] plugins - Re-added vim-toml --- bundles-init/vim-toml.load.vim | 1 - plugins/vim-toml.load.vim | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) delete mode 100644 bundles-init/vim-toml.load.vim create mode 100644 plugins/vim-toml.load.vim diff --git a/bundles-init/vim-toml.load.vim b/bundles-init/vim-toml.load.vim deleted file mode 100644 index ef05c67..0000000 --- a/bundles-init/vim-toml.load.vim +++ /dev/null @@ -1 +0,0 @@ -NeoBundle 'cespare/vim-toml' diff --git a/plugins/vim-toml.load.vim b/plugins/vim-toml.load.vim new file mode 100644 index 0000000..d25ae07 --- /dev/null +++ b/plugins/vim-toml.load.vim @@ -0,0 +1,5 @@ +call dein#add('cespare/vim-toml', #{ + \ lazy: 1, + \ merge_ftdetect: v:true, + \ on_ft: ['toml'], + \ })