docs: add (disabled) diagnostics config to bug report template (#2484)
* docs: add (disabled) diagnostics config to bug report template
* Revert "docs: add (disabled) diagnostics config to bug report template"
This reverts commit aa0b9aa9b8.
* docs: add (disabled) diagnostics config to bug report template
This commit is contained in:
parent
c1568568b3
commit
df38f1f30d
10
.github/ISSUE_TEMPLATE/nvt-min.lua
vendored
10
.github/ISSUE_TEMPLATE/nvt-min.lua
vendored
@ -35,3 +35,13 @@ _G.setup = function()
|
||||
require("nvim-tree").setup {}
|
||||
end
|
||||
|
||||
-- UNCOMMENT this block for diagnostics issues, substituting pattern and cmd as appropriate.
|
||||
-- Requires diagnostics.enable = true in setup.
|
||||
--[[
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = "lua",
|
||||
callback = function()
|
||||
vim.lsp.start { cmd = { "lua-language-server" } }
|
||||
end,
|
||||
})
|
||||
]]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user