From f1cefbd9b52694c2d86f4404281dfc48c06b641e Mon Sep 17 00:00:00 2001 From: dallinjdahl <42781038+dallinjdahl@users.noreply.github.com> Date: Tue, 19 Jan 2021 14:20:09 -0700 Subject: [PATCH] Adding .sv extension to verilog syntax highlighter --- lua/plugins/filetype.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/filetype.lua b/lua/plugins/filetype.lua index e5e45fd..70dd9ad 100644 --- a/lua/plugins/filetype.lua +++ b/lua/plugins/filetype.lua @@ -436,7 +436,7 @@ vis.ftdetect.filetypes = { ext = { "%.vcf$", "%.vcard$" }, }, verilog = { - ext = { "%.v$", "%.ver$" }, + ext = { "%.v$", "%.ver$", "%.sv$" }, }, vhdl = { ext = { "%.vh$", "%.vhd$", "%.vhdl$" }, -- 2.11.4.GIT