From f82ffdca1fbd7733b42e07b3d68daac4f041985e Mon Sep 17 00:00:00 2001 From: Craig Anderson <1877372+CDA0@users.noreply.github.com> Date: Fri, 3 Sep 2021 21:11:14 +0100 Subject: Add support for bicep (#1451) --- ftdetect/bicep.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ftdetect/bicep.lua (limited to 'ftdetect') diff --git a/ftdetect/bicep.lua b/ftdetect/bicep.lua new file mode 100644 index 00000000..bdd52e5e --- /dev/null +++ b/ftdetect/bicep.lua @@ -0,0 +1,3 @@ +vim.cmd [[ + au BufRead,BufNewFile *.bicep set filetype=bicep +]] -- cgit v1.2.3 From 9ec39484eb9b239ee2499bfd136cdbab1f4fbdfe Mon Sep 17 00:00:00 2001 From: shikun <17328586+kunish@users.noreply.github.com> Date: Tue, 21 Sep 2021 15:02:15 +0800 Subject: [Feature]: add basic `JSONC` support (#1535) * feat: add jsonc support * fix(jsonc): drop jsonc filetype detection workaround in lsp for now --- ftdetect/json.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ftdetect/json.lua (limited to 'ftdetect') diff --git a/ftdetect/json.lua b/ftdetect/json.lua new file mode 100644 index 00000000..9824e3e4 --- /dev/null +++ b/ftdetect/json.lua @@ -0,0 +1,3 @@ +vim.cmd [[ + au BufRead,BufNewFile tsconfig.json set filetype=jsonc +]] -- cgit v1.2.3 From 68d2678af32cea932f4860f4144e9efd9ec03ed1 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Fri, 8 Oct 2021 08:33:37 +0200 Subject: feat: add filetype detection for solidity --- ftdetect/sol.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 ftdetect/sol.lua (limited to 'ftdetect') diff --git a/ftdetect/sol.lua b/ftdetect/sol.lua new file mode 100644 index 00000000..b716f759 --- /dev/null +++ b/ftdetect/sol.lua @@ -0,0 +1,3 @@ +vim.cmd [[ + au BufRead,BufNewFile *.sol set filetype=solidity +]] -- cgit v1.2.3