about summary refs log tree commit diff
path: root/fnl/nvrc
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-03-12 17:18:25 +0900
committersefidel <contact@sefidel.net>2022-03-12 17:18:25 +0900
commitcbd70e53876a9e5ff14360e3f9ebb77ead770361 (patch)
tree6baaf66acf710c8f08c001ed3810fa6882933d4c /fnl/nvrc
parent876e2d10af4c3c93862bee6423b19fe41a15d064 (diff)
downloadnvimrc-cbd70e53876a9e5ff14360e3f9ebb77ead770361.tar.gz
nvimrc-cbd70e53876a9e5ff14360e3f9ebb77ead770361.zip
feat: jellybeans bar
Diffstat (limited to 'fnl/nvrc')
-rw-r--r--fnl/nvrc/colors.fnl4
-rw-r--r--fnl/nvrc/statusline.fnl2
2 files changed, 4 insertions, 2 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl
index db0e973..34499ec 100644
--- a/fnl/nvrc/colors.fnl
+++ b/fnl/nvrc/colors.fnl
@@ -7,7 +7,8 @@
                :red "#cf6a4c"
                :yellow "#fad07a"
                :green "#99ad6a"
-               :accent "#8fbfdc"})
+               :skyblue "#8fbfdc"
+               :accent "#ffb964"})
 
 
 (lambda colors.apply [colorscheme]
@@ -18,6 +19,7 @@
   ; Statusline
   (highlight! :StatusLine {:fg (. colors :fg) :bg (. colors :light_bg)})
   (highlight! :StatusLineNC {:fg (. colors :graphite) :bg (. colors :bg) :underline true})
+  (highlight! :StatusLinePad {:fg (. colors :skyblue) :bg (. colors :light_bg)})
   (highlight! :StatusLineAccent {:fg (. colors :accent) :bg (. colors :light_bg)})
   (highlight! :StatusLineAccentBold {:fg (. colors :accent) :bg (. colors :light_bg) :bold true})
 
diff --git a/fnl/nvrc/statusline.fnl b/fnl/nvrc/statusline.fnl
index d386ded..76efd45 100644
--- a/fnl/nvrc/statusline.fnl
+++ b/fnl/nvrc/statusline.fnl
@@ -24,7 +24,7 @@
 
 (global statusline {})
 (set statusline.enable (fn []
-                         (table.concat ["%#StatusLineAccent#"
+                         (table.concat ["%#StatusLinePad#"
                                         "▊ "
                                         "%#StatusLine#"
                                         "%#StatusLineAccentBold#"