From 7b66e265111bc556ba2d97b823f47de47d4ff2c9 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Tue, 26 Dec 2023 16:56:07 +0100 Subject: [PATCH] lualine: add icons - From https://github.com/geekingfrog/configFiles/blob/master/vim/fnl/plugins/00-eye-candy.fnl#L34-L37C67 --- lua/lazy-configure.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lua/lazy-configure.lua b/lua/lazy-configure.lua index ebd78aa..1c1b550 100644 --- a/lua/lazy-configure.lua +++ b/lua/lazy-configure.lua @@ -140,11 +140,17 @@ require('lazy').setup({ -- See `:help lualine.txt` opts = { options = { - icons_enabled = false, + icons_enabled = true, theme = 'rose-pine', component_separators = '|', section_separators = '', }, + symbols = { + error = " ", + warn = " ", + info = " ", + hint = " ", + } }, },