diff options
author | Josh Rahm <rahm@google.com> | 2024-03-27 14:30:32 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-03-27 14:30:32 -0600 |
commit | 2708ef39e6da0b55b4a5006403aa1c5b9a3b58fa (patch) | |
tree | 8ca7d6928d9f86ae1c35bc28c149a1b9771e1886 /lua/lualinesetup.lua | |
parent | 90716a6b31d0cdeee7fe333a292c62470c027f1a (diff) | |
download | config.vim-2708ef39e6da0b55b4a5006403aa1c5b9a3b58fa.tar.gz config.vim-2708ef39e6da0b55b4a5006403aa1c5b9a3b58fa.tar.bz2 config.vim-2708ef39e6da0b55b4a5006403aa1c5b9a3b58fa.zip |
Fixed issues with LuaLine and Telescope find_files.
Diffstat (limited to 'lua/lualinesetup.lua')
-rw-r--r-- | lua/lualinesetup.lua | 13 |
1 files changed, 9 insertions, 4 deletions
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' } }, } |