neovim: Migrate icons to Nerd Fonts 3

nazuna
Simon Bruder 2023-06-02 11:31:08 +02:00
parent 0e0bdf7c3e
commit 42f496ccea
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 1 additions and 1 deletions

View File

@ -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