From 20852d016ec33018a518fbdcb31a4b25dfd93fb1 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Fri, 31 May 2024 16:53:26 +0200 Subject: [PATCH] revert back to lualine --- lua/custom/plugins/lualine.lua | 13 +++++++++++++ lua/kickstart/plugins/mini.lua | 15 --------------- 2 files changed, 13 insertions(+), 15 deletions(-) create mode 100644 lua/custom/plugins/lualine.lua diff --git a/lua/custom/plugins/lualine.lua b/lua/custom/plugins/lualine.lua new file mode 100644 index 0000000..d376308 --- /dev/null +++ b/lua/custom/plugins/lualine.lua @@ -0,0 +1,13 @@ +return { + -- Set lualine as statusline + 'nvim-lualine/lualine.nvim', + -- See `:help lualine.txt` + opts = { + options = { + icons_enabled = vim.g.have_nerd_font, + theme = 'auto', + component_separators = '|', + section_separators = ' ', + }, + }, +} diff --git a/lua/kickstart/plugins/mini.lua b/lua/kickstart/plugins/mini.lua index 3e924a8..4cede6b 100644 --- a/lua/kickstart/plugins/mini.lua +++ b/lua/kickstart/plugins/mini.lua @@ -17,21 +17,6 @@ return { -- - sr)' - [S]urround [R]eplace [)] ['] require('mini.surround').setup() - -- Simple and easy statusline. - -- You could remove this setup call if you don't like it, - -- and try some other statusline plugin - local statusline = require 'mini.statusline' - -- set use_icons to true if you have a Nerd Font - statusline.setup { use_icons = vim.g.have_nerd_font } - - -- You can configure sections in the statusline by overriding their - -- default behavior. For example, here we set the section for - -- cursor location to LINE:COLUMN - ---@diagnostic disable-next-line: duplicate-set-field - statusline.section_location = function() - return '%2l:%-2v' - end - -- ... and there is more! -- Check out: https://github.com/echasnovski/mini.nvim end,