diff options
author | sefidel <contact@sefidel.net> | 2022-03-12 17:18:25 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-03-12 17:18:25 +0900 |
commit | cbd70e53876a9e5ff14360e3f9ebb77ead770361 (patch) | |
tree | 6baaf66acf710c8f08c001ed3810fa6882933d4c /fnl | |
parent | 876e2d10af4c3c93862bee6423b19fe41a15d064 (diff) | |
download | nvimrc-cbd70e53876a9e5ff14360e3f9ebb77ead770361.tar.gz nvimrc-cbd70e53876a9e5ff14360e3f9ebb77ead770361.zip |
feat: jellybeans bar
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/nvrc/colors.fnl | 4 | ||||
-rw-r--r-- | fnl/nvrc/statusline.fnl | 2 |
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#" |