diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-13 23:16:07 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-13 23:16:07 +0200 |
commit | ecfe443fe1b27cbcb0171e2f2a5d0a2f23edeed4 (patch) | |
tree | d9c005a770c0f01000342b3151cb9e96af1f38aa | |
parent | d8fa0b0ba12269e0abb1222246d1844fcb256725 (diff) |
Use default symbols for git and diagnostics
-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 |