summaryrefslogtreecommitdiffstats
path: root/after/plugin/statusline.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2023-12-05 16:01:57 -0500
committerSquibid <me@zacharyscheiman.com>2023-12-05 16:01:57 -0500
commit629d780aaa68cfd04b99735ba840734a1f7fba2b (patch)
treebacfdfa3b2637e807dd3d90edae4976123afbf39 /after/plugin/statusline.lua
parentc3e1b5c2c0221bca48ec22044c9da1391fa0d5cc (diff)
downloadnvim-629d780aaa68cfd04b99735ba840734a1f7fba2b.tar.gz
nvim-629d780aaa68cfd04b99735ba840734a1f7fba2b.tar.bz2
nvim-629d780aaa68cfd04b99735ba840734a1f7fba2b.zip
add highlights to statusline mode
Diffstat (limited to 'after/plugin/statusline.lua')
-rw-r--r--after/plugin/statusline.lua22
1 files changed, 11 insertions, 11 deletions
diff --git a/after/plugin/statusline.lua b/after/plugin/statusline.lua
index e30c946..936b464 100644
--- a/after/plugin/statusline.lua
+++ b/after/plugin/statusline.lua
@@ -20,22 +20,22 @@ end
local modes = {
-- display name, mode, highlight group
- n = { "Normal", "N" },
- niI = { "Normal", "N" },
- niR = { "Normal", "N" },
- niV = { "Normal", "N" },
+ n = { "Normal", "N", hl("@neorg.headings.1.title") },
+ niI = { "Normal", "N", hl("@neorg.headings.1.title") },
+ niR = { "Normal", "N", hl("@neorg.headings.1.title") },
+ niV = { "Normal", "N", hl("@neorg.headings.1.title") },
no = { "N·OpPd", "?" },
- v = { "Visual", "V" },
- V = { "V·Line", "Vl" },
- [""] = { "V·Block", "Vb" },
+ v = { "Visual", "V", hl("@neorg.headings.2.title") },
+ V = { "V·Line", "Vl", hl("@neorg.headings.2.title") },
+ [""] = { "V·Block", "Vb", hl("@neorg.headings.2.title") },
s = { "Select", "S" },
S = { "S·Line", "Sl" },
[""] = { "S·Block", "Sb" },
- i = { "Insert", "I" },
+ i = { "Insert", "I", hl("@neorg.headings.4.title") },
ic = { "ICompl", "Ic" },
- R = { "Replace", "R" },
- Rv = { "VReplace", "Rv" },
- c = { "Command", "C", hl("DiagnosticHint")},
+ R = { "Replace", "R", hl("@neorg.headings.5.title") },
+ Rv = { "VReplace", "Rv", hl("@neorg.headings.5.title") },
+ c = { "Command", "C", hl("@neorg.headings.3.title") },
cv = { "Vim Ex", "E" },
ce = { "Ex (r)", "E" },
r = { "Prompt", "P" },