diff --git a/users/simon/modules/neovim/init.lua b/users/simon/modules/neovim/init.lua index 1a212f4..d21ffe2 100644 --- a/users/simon/modules/neovim/init.lua +++ b/users/simon/modules/neovim/init.lua @@ -247,7 +247,7 @@ vim.lsp.handlers['textDocument/publishDiagnostics'] = vim.lsp.with(vim.lsp.diagn update_in_insert = true, -- update suggestions in insert mode }) -for type, icon in pairs({ Error = ' ', Warn = ' ', Hint = ' ', Info = ' ' }) do +for type, icon in pairs({ Error = '󰅚 ', Warn = '󰀪 ', Hint = '󰌶 ', Info = ' ' }) do fn.sign_define("DiagnosticSign" .. type, { text = icon, texthl = "Diagnostic" .. type }) end