mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-02-21 04:04:48 +01:00
9 lines
196 B
Lua
9 lines
196 B
Lua
return {
|
|
-- highlighting for the viper verification language
|
|
"tiyn/viper.nvim",
|
|
event = { "BufReadPre *.vpr", "FileType viper" },
|
|
config = function()
|
|
require("viper").setup()
|
|
end,
|
|
}
|