diff options
| author | aktersnurra <gustaf@gustafrydholm.xyz> | 2026-04-17 23:34:22 +0200 |
|---|---|---|
| committer | aktersnurra <gustaf@gustafrydholm.xyz> | 2026-04-18 00:50:44 +0200 |
| commit | ac8edfb0db52efe65e01f73ef44133a86571ba02 (patch) | |
| tree | 928d8f0d5ce0520d5acf782c4fdfd452f8f8470f /fnl/plugins/lualine.fnl | |
| parent | 152fd9d787c7433cad95795992e444250cb83216 (diff) | |
More based fixes
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} |