aboutsummaryrefslogtreecommitdiff
path: root/fnl/nvrc
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/nvrc')
-rw-r--r--fnl/nvrc/colors.fnl9
1 files changed, 7 insertions, 2 deletions
diff --git a/fnl/nvrc/colors.fnl b/fnl/nvrc/colors.fnl
index a26aa68..898ed92 100644
--- a/fnl/nvrc/colors.fnl
+++ b/fnl/nvrc/colors.fnl
@@ -8,7 +8,8 @@
:yellow "#dcb66a"
:green "#99ad6a"
:skyblue "#8fbfdc"
- :accent "#dfa358"})
+ :accent "#dfa358"
+ :selection "#f0a0c0"})
(lambda colors.apply [colorscheme]
@@ -31,6 +32,10 @@
(highlight! :DiagnosticSignError {:fg (. colors :red) :bg (. colors :light_bg)})
(highlight! :DiagnosticSignWarn {:fg (. colors :yellow) :bg (. colors :light_bg)})
(highlight! :DiagnosticSignInfo {:fg (. colors :green) :bg (. colors :light_bg)})
- (highlight! :DiagnosticSignHint {:fg (. colors :graphite) :bg (. colors :light_bg)}))
+ (highlight! :DiagnosticSignHint {:fg (. colors :graphite) :bg (. colors :light_bg)})
+
+ (highlight! :LeapMatch {:fg (. colors :selection) :underline true :bold true :nocombine true})
+ (highlight! :LeapLabelPrimary {:fg :black :bg (. colors :selection) :bold true})
+ (highlight! :LeapLabelSecondary {:fg :black :bg (. colors :accent) :bold true}))
colors