From 2708ef39e6da0b55b4a5006403aa1c5b9a3b58fa Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Wed, 27 Mar 2024 14:30:32 -0600 Subject: Fixed issues with LuaLine and Telescope find_files. --- lua/lualinesetup.lua | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'lua') diff --git a/lua/lualinesetup.lua b/lua/lualinesetup.lua index 16e0cce..b324f39 100644 --- a/lua/lualinesetup.lua +++ b/lua/lualinesetup.lua @@ -19,8 +19,8 @@ end local config = { options = { theme = 'meltdown', - component_separators = '‣', -- '┃' - section_separators = '', + component_separators = '', -- '┃' + section_separators = {left = '', right = ''}, }, sections = { lualine_a = { 'mode' }, @@ -29,12 +29,17 @@ local config = { -- right lualine_x = { + -- { clients_lsp, color = { fg = '#80a0ff' } }, + -- { 'encoding', color = { fg = '#80a0ff' } }, + -- { 'fileformat', color = { fg = '#ffb700' } }, + -- { 'filetype', color = { fg = '#80a0ff' } }, + }, + lualine_y = { { clients_lsp, color = { fg = '#80a0ff' } }, { 'encoding', color = { fg = '#80a0ff' } }, { 'fileformat', color = { fg = '#ffb700' } }, { 'filetype', color = { fg = '#80a0ff' } }, - }, - lualine_y = { 'progress' }, + 'progress' }, lualine_z = { 'location' } }, } -- cgit