diff --git a/modules/desktop/apps/neovim/plugins/lsp/extra.nix b/modules/desktop/apps/neovim/plugins/lsp/extra.nix index c7922cf..3b2701d 100644 --- a/modules/desktop/apps/neovim/plugins/lsp/extra.nix +++ b/modules/desktop/apps/neovim/plugins/lsp/extra.nix @@ -21,7 +21,7 @@ in { }, }) - local signs = { Error = "😡", Warn = "😡", Hint = "🤓", Info = "🤓" } + local signs = { Error = "😡", Warn = "🤓", Hint = "🤓", Info = "🤓" } for type, icon in pairs(signs) do local hl = "DiagnosticSign" .. type vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })