1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-02-21 04:04:48 +01:00
Files
dotfiles/.config/nvim/lua/plugins/viper-nvim.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,
}