From 442d2ab757b4de6bc492186ff76ffed9746d772b Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 4 May 2023 22:59:39 +0800 Subject: [PATCH] feat!: switch to Nerd Fonts v3.0.0 for diagnostic symbols (#1033) Ref https://github.com/ryanoasis/nerd-fonts/issues/1059#issuecomment-1404891287 --- lua/lualine/components/diagnostics/config.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/lualine/components/diagnostics/config.lua b/lua/lualine/components/diagnostics/config.lua index bfe3544..ce48544 100644 --- a/lua/lualine/components/diagnostics/config.lua +++ b/lua/lualine/components/diagnostics/config.lua @@ -5,10 +5,10 @@ local M = {} -- default symbols for diagnostics component M.symbols = { icons = { - error = ' ', -- xf659 - warn = ' ', -- xf529 - info = ' ', -- xf7fc - hint = ' ', -- xf835 + error = '󰅚 ', -- x000f015a + warn = '󰀪 ', -- x000f002a + info = '󰋽 ', -- x000f02fd + hint = '󰌶 ', -- x000f0336 }, no_icons = { error = 'E:', warn = 'W:', info = 'I:', hint = 'H:' }, }