zen-mode.nvim
zen-mode.nvim copied to clipboard
Integration with lspconfig and lspsaga
Similarly to the gitsigns plugin, is there an integration with lsp to disable eg virtual text diagnostics and code action prompt from lspsaga in zen mode?
Great idea. I'll add this soon. Thanks!
Could this happen by running a command in here:
on_open = function(win)
COMMAND TO KILL LSP
end,
on_close = function()
COMMAND TO RESTART LSP
end,
I ask because I'm not totally sure what should go in for the placeholders above. Any pointers would be great.
I ask because I'm not totally sure what should go in for the placeholders above. Any pointers would be great.
on_open = function(win)
vim.cmd("LspStop")
end,
on_close = function()
vim.cmd("LspStart")
end
... works great.