about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--fnl/nvrc/colors.fnl11
-rw-r--r--fnl/nvrc/pack.fnl4
2 files changed, 8 insertions, 7 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl
index 34499ec..db3234a 100644
--- a/fnl/nvrc/colors.fnl
+++ b/fnl/nvrc/colors.fnl
@@ -1,14 +1,14 @@
 (import-macros {: setv!} :nvrc.macro.set)
 
 (local colors {:bg "#151515"
-               :light_bg "#333333"
+               :light_bg "#303030"
                :graphite "#888888"
-               :fg "#e8e8d3"
+               :fg "#cbc0ab"
                :red "#cf6a4c"
-               :yellow "#fad07a"
+               :yellow "#be9f5f"
                :green "#99ad6a"
                :skyblue "#8fbfdc"
-               :accent "#ffb964"})
+               :accent "#d8a465"})
 
 
 (lambda colors.apply [colorscheme]
@@ -17,8 +17,7 @@
   (vim.cmd (.. "colorscheme " colorscheme))
 
   ; Statusline
-  (highlight! :StatusLine {:fg (. colors :fg) :bg (. colors :light_bg)})
-  (highlight! :StatusLineNC {:fg (. colors :graphite) :bg (. colors :bg) :underline true})
+  (highlight! :StatusLineNC {:fg (. colors :graphite) :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/pack.fnl b/fnl/nvrc/pack.fnl
index a484b9d..6923d06 100644
--- a/fnl/nvrc/pack.fnl
+++ b/fnl/nvrc/pack.fnl
@@ -4,7 +4,7 @@
 (pack! :rktjmp/hotpot.nvim)
 (pack! :lewis6991/impatient.nvim)
 
-(pack! :nanotech/jellybeans.vim {:config "require('nvrc.colors').apply('jellybeans')"})
+(pack! :boppyt/softjelly.vim {:config "require('nvrc.colors').apply('softjelly')"})
 (pack! :nvim-treesitter/nvim-treesitter {:req :treesitter
                                          :requires [(pack :nvim-treesitter/nvim-treesitter-refactor {:after :nvim-treesitter})
                                                     (pack :nvim-treesitter/nvim-treesitter-textobjects {:after :nvim-treesitter})]})
@@ -34,4 +34,6 @@
 (pack! :ibhagwan/fzf-lua {:req :fzf :module :fzf-lua})
 (pack! :ggandor/lightspeed.nvim)
 
+(pack! :NvChad/nvim-colorizer.lua)
+
 (unpack!)