From 9eb1d5b1fdd43ece0452601e526af364de5c84d3 Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Wed, 13 Jul 2022 23:02:50 +0200 Subject: Add lsp to lualine --- fnl/config/lualine.fnl | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'fnl') diff --git a/fnl/config/lualine.fnl b/fnl/config/lualine.fnl index b8c651d..17360cd 100644 --- a/fnl/config/lualine.fnl +++ b/fnl/config/lualine.fnl @@ -13,12 +13,21 @@ :TelescopePrompt ""]) +(defn- active-clients [] (let [clients (vim.lsp.buf_get_clients) + client_names []] + (each [_ client (pairs clients)] + (if (not= client.name :null-ls) + (table.insert client_names client.name))) + (if (> (length client_names) 0) + (table.concat client_names ", ") + ""))) + (defn- hide-in-width [] (> (vim.fn.winwidth 0) 80)) (def- diagnostics {1 :diagnostics :sources [:nvim_diagnostic] :sections [:error :warn] - :symbols {:error " " :warn " "} + ;; :symbols {:error "x " :warn "! "} :colored false :update_in_insert false :always_visible true}) @@ -32,6 +41,8 @@ (def- filetype {1 :filetype :cond hide_in_width :color {}}) +(def- language-server {1 active-clients :padding 0 :cond hide_in_width}) + (let [lualine (util.load-plugin :lualine)] (lualine.setup {:options {:icons_enabled true :theme :auto @@ -42,7 +53,7 @@ :sections {:lualine_a [:mode] :lualine_b [branch diff :filename] :lualine_c {} - :lualine_x [diagnostics filetype] + :lualine_x [filetype language-server diagnostics] :lualine_y {} :lualine_z [:location :progress :encoding]} :inactive_sections {:lualine_a [:mode] -- cgit v1.2.3-70-g09d2