From 511f7fe21e404e95a859a168ef93cb2fdee1c238 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 22 Jul 2023 09:22:46 +0100 Subject: [PATCH] feat(nvim): configure lualine --- after/plugin/lualine.lua | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/after/plugin/lualine.lua b/after/plugin/lualine.lua index fdf27a1..dab4c63 100644 --- a/after/plugin/lualine.lua +++ b/after/plugin/lualine.lua @@ -3,4 +3,18 @@ if not status_ok then return end -lualine.setup {} +lualine.setup { + options = { + component_separators = { left = "", right = "" }, + extensions = { "fzf", "quickfix" }, + icons_enabled = false, + section_separators = { left = "", right = "" }, + theme = "catppuccin", + }, + sections = { + lualine_c = { + "filename", + "lsp_progress", + }, + }, +}