-- Author : swytch -- Created : Tuesday May 18, 2021 12:08:51 CET -- License : GPLv3 -- Description : neovim lsp config file vim.fn.sign_define( "DiagnosticSignError", { texthl = "DiagnosticVirtualTextError", text = globals.sign_error, numhl = "DiagnosticSignError" } ) vim.fn.sign_define( "DiagnosticSignWarn", { texthl = "DiagnosticVirtualTextWarn", text = globals.sign_warning, numhl = "DiagnosticSignWarn" } ) vim.fn.sign_define( "DiagnosticSignHint", { texthl = "DiagnosticVirtualTextHint", text = globals.sign_hint, numhl = "DiagnosticSignHint" } ) vim.fn.sign_define( "DiagnosticSignInfo", { texthl = "DiagnosticVirtualTextInfo", text = globals.sign_info, numhl = "DiagnosticSignInfo" } )