about summary refs log tree commit diff
path: root/fnl/nvrc
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-03-13 16:09:06 +0900
committersefidel <contact@sefidel.net>2022-03-13 16:09:06 +0900
commit975fc8f6f15c8c213cfa3b978cf0a23e42b684ac (patch)
treef23bb15d26dacaa8a8ab991e52bece7d86a4656a /fnl/nvrc
parentb902fc9f0bbeae2c52f075ea2665be52a9dae90c (diff)
downloadnvimrc-975fc8f6f15c8c213cfa3b978cf0a23e42b684ac.tar.gz
nvimrc-975fc8f6f15c8c213cfa3b978cf0a23e42b684ac.zip
feat: softjelly
Diffstat (limited to 'fnl/nvrc')
-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!)