local state = true local function swap() vim.diagnostic.config({ virtual_text = not state, virtual_lines = state }) state = not state end vim.keymap.set("n", "dt", swap)