# HG changeset patch # User zegervdv # Date 1624175749 -7200 # Node ID aea0cbb8252249b76bb70425b42b250087323596 # Parent 7086593e6c0d0039b1701cf3a0f05beded4ca641 Format config.lua diff -r 7086593e6c0d -r aea0cbb82522 dot_config/nvim/config.lua --- a/dot_config/nvim/config.lua Sun Jun 20 09:55:39 2021 +0200 +++ b/dot_config/nvim/config.lua Sun Jun 20 09:55:49 2021 +0200 @@ -357,10 +357,22 @@ inoremap { '', vim.lsp.buf.signature_help, silent = true } - vim.fn.sign_define("LspDiagnosticsSignError", { texthl = "LspDiagnosticsSignError", linehl="", numhl = "", text = "▎" }) - vim.fn.sign_define("LspDiagnosticsSignWarning", { texthl = "LspDiagnosticsSignWarning", linehl="", numhl = "", text = "▎" }) - vim.fn.sign_define("LspDiagnosticsSignInformation", { texthl = "LspDiagnosticsSignInformation", linehl="", numhl = "", text = "▎" }) - vim.fn.sign_define("LspDiagnosticsSignHint", { texthl = "LspDiagnosticsSignHint", linehl="", numhl = "", text = "▎" }) + vim.fn.sign_define('LspDiagnosticsSignError', + { texthl = 'LspDiagnosticsSignError', linehl = '', numhl = '', text = '▎' }) + vim.fn.sign_define('LspDiagnosticsSignWarning', { + texthl = 'LspDiagnosticsSignWarning', + linehl = '', + numhl = '', + text = '▎', + }) + vim.fn.sign_define('LspDiagnosticsSignInformation', { + texthl = 'LspDiagnosticsSignInformation', + linehl = '', + numhl = '', + text = '▎', + }) + vim.fn.sign_define('LspDiagnosticsSignHint', + { texthl = 'LspDiagnosticsSignHint', linehl = '', numhl = '', text = '▎' }) end vim.lsp.handlers['textDocument/formatting'] = function(err, _, result, _, bufnr)