Add @diagnostic disable: undefined-global to template

This commit is contained in:
Oliver Marriott 2021-08-25 01:17:11 +10:00
parent 15d8d4e86a
commit 056f73e7d9
Signed by: devraza
GPG key ID: 91EAD6081011574B

View file

@ -45,6 +45,9 @@
local lush = require('lush') local lush = require('lush')
local hsl = lush.hsl local hsl = lush.hsl
-- LSP/Linters mistakenly show `undefined global` errors in the spec, they may
-- support an annotation like the following. Consult your server documentation.
---@diagnostic disable: undefined-global
local theme = lush(function() local theme = lush(function()
return { return {
-- The following are all the Neovim default highlight groups from the docs -- The following are all the Neovim default highlight groups from the docs