diff options
| author | brustybee <beebeeb5k@gmail.com> | 2026-04-05 20:00:45 +0530 |
|---|---|---|
| committer | brustybee <beebeeb5k@gmail.com> | 2026-04-05 20:00:45 +0530 |
| commit | 9ce536875e4dbbebb6d894e11a3877d4fb4f51ca (patch) | |
| tree | 026e0c3402eec51e09d07e2296c8adca357099bf /lua/plugins/ui.lua | |
| parent | eb3348c2c0234b99a5ff37ccfcefd5ef1486b5dd (diff) | |
remove unused plugin config and replace mini-statusline with lualine
Diffstat (limited to 'lua/plugins/ui.lua')
| -rw-r--r-- | lua/plugins/ui.lua | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/lua/plugins/ui.lua b/lua/plugins/ui.lua index 33d869c..493c426 100644 --- a/lua/plugins/ui.lua +++ b/lua/plugins/ui.lua @@ -1,18 +1,15 @@ return { - -- { - -- "mini.indentscope", - -- for_cats = "ui", - -- event = { "BufReadPre", "BufNewFile" }, - -- after = function() - -- require("mini.indentscope").setup({ symbol = "│" }) - -- end, - -- }, { - "mini.statusline", + "lualine.nvim", for_cats = "ui", event = { "DeferredUIEnter" }, after = function() - require("mini.statusline").setup() + require("lualine").setup({ + options = { + component_separators = { left = "|", right = "|" }, + section_separators = {}, + }, + }) end, }, { |
