From 1ba51a99d24dd47f392a666d6602bdee25d341c4 Mon Sep 17 00:00:00 2001 From: Joe Date: Wed, 6 Sep 2023 18:32:32 +0200 Subject: up --- .config/nvim/lua/plugs-config/lualine.lua | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to '.config/nvim/lua') diff --git a/.config/nvim/lua/plugs-config/lualine.lua b/.config/nvim/lua/plugs-config/lualine.lua index 6646d02..d577b54 100644 --- a/.config/nvim/lua/plugs-config/lualine.lua +++ b/.config/nvim/lua/plugs-config/lualine.lua @@ -178,16 +178,22 @@ ins_left { -- Insert mid section. You can make any number of sections in neovim :) -- for lualine it's any number greater then 2 -ins_left { - function() - return '%=' - end, +-- ins_left { +-- function() +-- return '%=' +-- end, +-- } + +ins_right { + 'filetype', + icons_enabled = true, -- I think icons are cool but Eviline doesn't have them. sigh + color = { fg = colors.blue }, } -ins_left { +ins_right { -- Lsp server name . function() - local msg = 'No Active Lsp' + local msg = 'no lsp' local buf_ft = vim.api.nvim_buf_get_option(0, 'filetype') local clients = vim.lsp.get_active_clients() if next(clients) == nil then @@ -201,16 +207,10 @@ ins_left { end return msg end, - icon = ' LSP:', + icon = ' ', color = { fg = colors.cyan }, } -ins_right { - 'filetype', - icons_enabled = true, -- I think icons are cool but Eviline doesn't have them. sigh - color = { fg = colors.green, gui = 'bold' }, -} - ins_right { -- filesize component 'filesize', -- cgit v1.2.3