diff options
Diffstat (limited to 'fnl/config')
| -rw-r--r-- | fnl/config/lualine.fnl | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/fnl/config/lualine.fnl b/fnl/config/lualine.fnl index 71c5af4..6db7ae5 100644 --- a/fnl/config/lualine.fnl +++ b/fnl/config/lualine.fnl @@ -28,21 +28,20 @@  (def- diagnostics {1 :diagnostics                     :sources [:nvim_diagnostic]                     :sections [:error :warn] -                   ;; :symbols {:error "x " :warn "! "}                     :colored false +                   :padding 0                     :update_in_insert false                     :always_visible true})  (def- diff {1 :diff              :colored false -            :symbols {:added " " :modified " " :removed " "}              :cond hide-in-width})  (def- branch {1 "b:gitsigns_head" :icon " " :cond hide-in-width})  (def- filetype {1 :filetype :cond hide_in_width :color {}}) -(def- language-server {1 active-clients :padding 0 :cond hide_in_width}) +(def- language-server {1 active-clients :cond hide_in_width})  (let [lualine (util.load-plugin :lualine)]    (lualine.setup {:options {:icons_enabled true  |