From 1b3bb132784e355188a9cc330a6dbbb26bcdee71 Mon Sep 17 00:00:00 2001 From: orip Date: Fri, 4 Jul 2025 17:32:28 +0300 Subject: [PATCH] Fix formatting --- init.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/init.lua b/init.lua index d133009a..507b2ee2 100644 --- a/init.lua +++ b/init.lua @@ -585,9 +585,7 @@ require('lazy').setup({ map('grt', require('telescope.builtin').lsp_type_definitions, '[G]oto [T]ype Definition') -- Toggle to show/hide diagnostic messages - map('td', function() - vim.diagnostic.enable(not vim.diagnostic.is_enabled()) - end, '[T]oggle [D]iagnostics') + map('td', function() vim.diagnostic.enable(not vim.diagnostic.is_enabled()) end, '[T]oggle [D]iagnostics') -- This function resolves a difference between neovim nightly (version 0.11) and stable (version 0.10) ---@param client vim.lsp.Client