diff options
author | sefidel <contact@sefidel.net> | 2022-05-09 17:51:54 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-05-09 17:51:54 +0900 |
commit | 53831367e8deea7cbd471bd48b9681d2a7dd5afb (patch) | |
tree | 295447f996726d20e396b0c878cd0dce7b2f0210 /fnl/nvrc | |
parent | 7c1ffc3cf325938e2b42fcaa9fd93d7e99421ba5 (diff) | |
download | nvimrc-53831367e8deea7cbd471bd48b9681d2a7dd5afb.tar.gz nvimrc-53831367e8deea7cbd471bd48b9681d2a7dd5afb.zip |
feat(colors): revert softjelly
Diffstat (limited to 'fnl/nvrc')
-rw-r--r-- | fnl/nvrc/colors.fnl | 11 | ||||
-rw-r--r-- | fnl/nvrc/pack.fnl | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl index 898ed92..7aedfd0 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 "#303030" + :light_bg "#333333" :graphite "#888888" - :fg "#cbc0ab" + :fg "#e8e8d3" :red "#cf6a4c" - :yellow "#dcb66a" + :yellow "#fad07a" :green "#99ad6a" :skyblue "#8fbfdc" - :accent "#dfa358" + :accent "#ffb964" :selection "#f0a0c0"}) @@ -18,7 +18,8 @@ (vim.cmd (.. "colorscheme " colorscheme)) ; Statusline - (highlight! :StatusLineNC {:fg (. colors :graphite) :underline true}) + (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/pack.fnl b/fnl/nvrc/pack.fnl index 2f1d60d..e4e823f 100644 --- a/fnl/nvrc/pack.fnl +++ b/fnl/nvrc/pack.fnl @@ -4,7 +4,7 @@ (pack! :wbthomason/packer.nvim) (pack! :rktjmp/hotpot.nvim) -(pack! "https://git.sr.ht/~sefidel/softjelly.vim" {:config "require('nvrc.colors').apply('softjelly')"}) +(pack! :nanotech/jellybeans.vim {:config "require('nvrc.colors').apply('jellybeans')"}) (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})]}) |