diff options
Diffstat (limited to 'fnl/plugins/lualine.fnl')
| -rw-r--r-- | fnl/plugins/lualine.fnl | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/fnl/plugins/lualine.fnl b/fnl/plugins/lualine.fnl index b331e79..93a2f94 100644 --- a/fnl/plugins/lualine.fnl +++ b/fnl/plugins/lualine.fnl @@ -42,18 +42,8 @@ (local branch {1 "b:gitsigns_head" :icon (. icons :git) :cond hide-in-width}) -(local filetype {1 :filetype - :icon_only true - :colored false - :cond hide-in-width}) - (local language-server {1 active-clients :cond hide-in-width}) -(local lsp-progress - {1 :lsp_progress - :display_components [[:title :percentage :message]] - :timer {:progress_enddelay 500 :lsp_client_name_enddelay 500}}) - (local opts {:options {:icons_enabled true :theme :no-clown-fiesta :component_separators "" @@ -65,8 +55,8 @@ :sections {:lualine_a [:mode] :lualine_b [:filename branch diff] :lualine_c {} - :lualine_x [lsp-progress language-server diagnostics] - :lualine_y [filetype] + :lualine_x [language-server diagnostics] + :lualine_y {} :lualine_z [:location :progress]} :inactive_sections {:lualine_a [:mode] :lualine_b {} @@ -76,9 +66,4 @@ :lualine_z [:location :progress]} :extensions [:oil :mason]}) -(local dependencies [:arkav/lualine-lsp-progress]) - -{1 :nvim-lualine/lualine.nvim - :event :VeryLazy - : opts - : dependencies} +{1 :nvim-lualine/lualine.nvim :event :VeryLazy : opts} |