summaryrefslogtreecommitdiff
path: root/fnl/config/lualine.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-04 22:35:27 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-04 22:35:27 +0200
commit2001cea7d87e7ef72bee11039bfe6eeeb680dd46 (patch)
tree9648650b05150f97e508927de33d832a9410b5e4 /fnl/config/lualine.fnl
parentf76a4f1eb665e223be19f200336409a3de48f5bb (diff)
feat(lualine): add fnl config
Diffstat (limited to 'fnl/config/lualine.fnl')
-rw-r--r--fnl/config/lualine.fnl61
1 files changed, 61 insertions, 0 deletions
diff --git a/fnl/config/lualine.fnl b/fnl/config/lualine.fnl
new file mode 100644
index 0000000..908b6d2
--- /dev/null
+++ b/fnl/config/lualine.fnl
@@ -0,0 +1,61 @@
+;; Statusbar.
+(module config.lualine
+ {autoload {util util}})
+
+(defn- hide-in-width []
+ (> (vim.fn.winwidth 0) 80))
+
+(def- diagnostics {
+ 1 "diagnostics"
+ :sources [ "nvim_diagnostic" ]
+ :sections [ "error" "warn" ]
+ :symbols { :error " " :warn " " }
+ :colored false
+ :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 {}})
+
+(let [(ok? lualine) util.load-plugin :lualine]
+ (when ok?
+ (lualine.setup {
+ :options {
+ :icons_enabled true
+ :theme "auto"
+ :component_separators { :left "" :right "" }
+ :section_separators { :left "" :right "" }
+ :disabled_filetypes [ "alpha" "dashboard" "NvimTree" "Outline" ]
+ :always_divide_middle true
+ }
+ :sections {
+ :lualine_a [ "mode" ]
+ :lualine_b { 1 branch 2 "filename" }
+ :lualine_c { 1 diff }
+ :lualine_x { 1 diagnostics 2 filetype }
+ :lualine_y {}
+ :lualine_z [ "location" "progress" "encoding" ]
+ }
+ :inactive_sections {
+ :lualine_a [ "mode" ]
+ :lualine_b [ "filename" ]
+ :lualine_c {}
+ :lualine_x {}
+ :lualine_y {}
+ :lualine_z [ "location" "progress" "encoding" ]
+ }
+ :tabline {}
+ :extensions {}})))