diff options
| author | notken12 <kendotzhou@gmail.com> | 2022-11-08 21:12:37 -0500 |
|---|---|---|
| committer | notken12 <kendotzhou@gmail.com> | 2022-11-08 21:12:37 -0500 |
| commit | 2bb41b0bb715bdbad2105cf1d8ee14561136aa91 (patch) | |
| tree | 2fe71bd0e58da18585080cb23f12e6dbaf40276f | |
| parent | new treesitter highlights (diff) | |
change cursorline
94 files changed, 101 insertions, 95 deletions
@@ -14,10 +14,13 @@ with open(os.path.join('src', 'template-nvchad.toml'), "r") as text_file: if not os.path.exists('templates'): os.mkdir('templates') - + if not os.path.exists('compiled'): os.mkdir('compiled') +os.system('rm -r lua') +os.system('rm -r colors') + # iterate over files in # that directory for filename in os.listdir(directory): @@ -35,7 +38,8 @@ for filename in os.listdir(directory): if started: if '}' in line: brackets += 1 - line = line.replace("--", "#").replace(",","").replace('{','').replace('}','').replace('M.base_16 =','').strip() + line = line.replace("--", "#").replace(",", "").replace( + '{', '').replace('}', '').replace('M.base_16 =', '').strip() if len(line) > 0: palette += line + '\n' if brackets >= 2: @@ -59,3 +63,5 @@ for filename in os.listdir(directory): os.system("cd compiled && colorgen-nvim ../" + template_path) os.system('cp -r compiled/' + themename + '/colors .') os.system('cp -r compiled/' + themename + '/lua .') + +os.system('rm -r compiled') diff --git a/lua/aquarium/theme.lua b/lua/aquarium/theme.lua index cc6768d..2b2ee3d 100644 --- a/lua/aquarium/theme.lua +++ b/lua/aquarium/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/ayu_dark/theme.lua b/lua/ayu_dark/theme.lua index 7db9e43..950ce15 100644 --- a/lua/ayu_dark/theme.lua +++ b/lua/ayu_dark/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/ayu_light/theme.lua b/lua/ayu_light/theme.lua index 18b5153..bae1234 100644 --- a/lua/ayu_light/theme.lua +++ b/lua/ayu_light/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/blossom/theme.lua b/lua/blossom/theme.lua index 1931618..92dd64a 100644 --- a/lua/blossom/theme.lua +++ b/lua/blossom/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/catppuccin/theme.lua b/lua/catppuccin/theme.lua index 6a3f915..e47c8c1 100644 --- a/lua/catppuccin/theme.lua +++ b/lua/catppuccin/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/catppuccin_latte/theme.lua b/lua/catppuccin_latte/theme.lua index 0ad8a2d..181da01 100644 --- a/lua/catppuccin_latte/theme.lua +++ b/lua/catppuccin_latte/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/chadracula/theme.lua b/lua/chadracula/theme.lua index a90ebba..104c5b0 100644 --- a/lua/chadracula/theme.lua +++ b/lua/chadracula/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/chadtain/theme.lua b/lua/chadtain/theme.lua index 7091416..c99f18a 100644 --- a/lua/chadtain/theme.lua +++ b/lua/chadtain/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/chocolate/theme.lua b/lua/chocolate/theme.lua index f86d902..67f6e5b 100644 --- a/lua/chocolate/theme.lua +++ b/lua/chocolate/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/dark_horizon/theme.lua b/lua/dark_horizon/theme.lua index a976c49..7cd1056 100644 --- a/lua/dark_horizon/theme.lua +++ b/lua/dark_horizon/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/decay/theme.lua b/lua/decay/theme.lua index b3a3024..59fc0a5 100644 --- a/lua/decay/theme.lua +++ b/lua/decay/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/doomchad/theme.lua b/lua/doomchad/theme.lua index f0ce778..b8300be 100644 --- a/lua/doomchad/theme.lua +++ b/lua/doomchad/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/everforest/theme.lua b/lua/everforest/theme.lua index 27b2714..6ac104f 100644 --- a/lua/everforest/theme.lua +++ b/lua/everforest/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/everforest_light/theme.lua b/lua/everforest_light/theme.lua index 1a9a756..0010535 100644 --- a/lua/everforest_light/theme.lua +++ b/lua/everforest_light/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/falcon/theme.lua b/lua/falcon/theme.lua index 9f0099c..73bb4ab 100644 --- a/lua/falcon/theme.lua +++ b/lua/falcon/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/gatekeeper/theme.lua b/lua/gatekeeper/theme.lua index 6c3e509..d51e698 100644 --- a/lua/gatekeeper/theme.lua +++ b/lua/gatekeeper/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/gruvbox/theme.lua b/lua/gruvbox/theme.lua index 1ba7243..d18f573 100644 --- a/lua/gruvbox/theme.lua +++ b/lua/gruvbox/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/gruvbox_light/theme.lua b/lua/gruvbox_light/theme.lua index 0ce7e27..e619177 100644 --- a/lua/gruvbox_light/theme.lua +++ b/lua/gruvbox_light/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/gruvbox_material/theme.lua b/lua/gruvbox_material/theme.lua index ab1e2f4..b46df29 100644 --- a/lua/gruvbox_material/theme.lua +++ b/lua/gruvbox_material/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/gruvchad/theme.lua b/lua/gruvchad/theme.lua index 7b76e8e..333e406 100644 --- a/lua/gruvchad/theme.lua +++ b/lua/gruvchad/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/jellybeans/theme.lua b/lua/jellybeans/theme.lua index 1fe604e..ef97492 100644 --- a/lua/jellybeans/theme.lua +++ b/lua/jellybeans/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/kanagawa/theme.lua b/lua/kanagawa/theme.lua index 0640538..389ce2d 100644 --- a/lua/kanagawa/theme.lua +++ b/lua/kanagawa/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/monekai/theme.lua b/lua/monekai/theme.lua index 284b619..e2c428e 100644 --- a/lua/monekai/theme.lua +++ b/lua/monekai/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/mountain/theme.lua b/lua/mountain/theme.lua index d0a930a..14ba760 100644 --- a/lua/mountain/theme.lua +++ b/lua/mountain/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/nightfox/theme.lua b/lua/nightfox/theme.lua index e5e69b4..5414a4e 100644 --- a/lua/nightfox/theme.lua +++ b/lua/nightfox/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/nightlamp/theme.lua b/lua/nightlamp/theme.lua index 1636343..0db20a1 100644 --- a/lua/nightlamp/theme.lua +++ b/lua/nightlamp/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/nightowl/theme.lua b/lua/nightowl/theme.lua index 5b046c1..07a67cc 100644 --- a/lua/nightowl/theme.lua +++ b/lua/nightowl/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/nord/theme.lua b/lua/nord/theme.lua index 8a2b28c..2fc1d1a 100644 --- a/lua/nord/theme.lua +++ b/lua/nord/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/oceanic_next/theme.lua b/lua/oceanic_next/theme.lua index 6572108..9552e61 100644 --- a/lua/oceanic_next/theme.lua +++ b/lua/oceanic_next/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/one_light/theme.lua b/lua/one_light/theme.lua index a9ce6fb..3737b9a 100644 --- a/lua/one_light/theme.lua +++ b/lua/one_light/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/onedark/theme.lua b/lua/onedark/theme.lua index cbb257b..39a0635 100644 --- a/lua/onedark/theme.lua +++ b/lua/onedark/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/onenord/theme.lua b/lua/onenord/theme.lua index 14c75a7..6418ce3 100644 --- a/lua/onenord/theme.lua +++ b/lua/onenord/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/onenord_light/theme.lua b/lua/onenord_light/theme.lua index e8c2a27..cd3371d 100644 --- a/lua/onenord_light/theme.lua +++ b/lua/onenord_light/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/palenight/theme.lua b/lua/palenight/theme.lua index 29d7da4..9010639 100644 --- a/lua/palenight/theme.lua +++ b/lua/palenight/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/pastelDark/theme.lua b/lua/pastelDark/theme.lua index 8fb7da9..4adf8b5 100644 --- a/lua/pastelDark/theme.lua +++ b/lua/pastelDark/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/radium/theme.lua b/lua/radium/theme.lua index 5e348b8..45f1d0a 100644 --- a/lua/radium/theme.lua +++ b/lua/radium/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/rosepine/theme.lua b/lua/rosepine/theme.lua index 7e0ecc3..6c7c014 100644 --- a/lua/rosepine/theme.lua +++ b/lua/rosepine/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/rxyhn/theme.lua b/lua/rxyhn/theme.lua index 78e001b..61b19d5 100644 --- a/lua/rxyhn/theme.lua +++ b/lua/rxyhn/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/solarized_dark/theme.lua b/lua/solarized_dark/theme.lua index 3dff8e6..83283c1 100644 --- a/lua/solarized_dark/theme.lua +++ b/lua/solarized_dark/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/sweetpastel/theme.lua b/lua/sweetpastel/theme.lua index 31270a4..a50f682 100644 --- a/lua/sweetpastel/theme.lua +++ b/lua/sweetpastel/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/tokyodark/theme.lua b/lua/tokyodark/theme.lua index 1ae0919..96f48ec 100644 --- a/lua/tokyodark/theme.lua +++ b/lua/tokyodark/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 8deb31c..92cba6f 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/tomorrow_night/theme.lua b/lua/tomorrow_night/theme.lua index 3f3934b..5107775 100644 --- a/lua/tomorrow_night/theme.lua +++ b/lua/tomorrow_night/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/vscode_dark/theme.lua b/lua/vscode_dark/theme.lua index d353974..a9776b8 100644 --- a/lua/vscode_dark/theme.lua +++ b/lua/vscode_dark/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/wombat/theme.lua b/lua/wombat/theme.lua index ffc9e97..9174c70 100644 --- a/lua/wombat/theme.lua +++ b/lua/wombat/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/lua/yoru/theme.lua b/lua/yoru/theme.lua index 09a69b6..6ac69a8 100644 --- a/lua/yoru/theme.lua +++ b/lua/yoru/theme.lua @@ -27,7 +27,7 @@ theme.set_highlights = function() hl(0, "LineNr", { fg = c.grey, bg = 'NONE' }) hl(0, "FloatBorder", { fg = c.blue, bg = 'NONE' }) hl(0, "VertSplit", { fg = c.line, bg = 'NONE' }) - hl(0, "CursorLine", { fg = 'NONE', bg = c.base01 }) + hl(0, "CursorLine", { fg = 'NONE', bg = c.one_bg }) hl(0, "CursorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "ColorColumn", { fg = 'NONE', bg = c.base01 }) hl(0, "NormalFloat", { fg = 'NONE', bg = c.darker_black }) diff --git a/src/template-nvchad.toml b/src/template-nvchad.toml index 955b235..e569170 100644 --- a/src/template-nvchad.toml +++ b/src/template-nvchad.toml @@ -27,7 +27,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/aquarium.toml b/templates/aquarium.toml index 40ed4ee..73ffdb8 100644 --- a/templates/aquarium.toml +++ b/templates/aquarium.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/ayu_dark.toml b/templates/ayu_dark.toml index 89fa882..c718309 100644 --- a/templates/ayu_dark.toml +++ b/templates/ayu_dark.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/ayu_light.toml b/templates/ayu_light.toml index bc70cfc..3dbcef2 100644 --- a/templates/ayu_light.toml +++ b/templates/ayu_light.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/blossom.toml b/templates/blossom.toml index 97d5ca8..6dc15ae 100644 --- a/templates/blossom.toml +++ b/templates/blossom.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/catppuccin.toml b/templates/catppuccin.toml index ba13384..42a4b6a 100644 --- a/templates/catppuccin.toml +++ b/templates/catppuccin.toml @@ -74,7 +74,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/catppuccin_latte.toml b/templates/catppuccin_latte.toml index ce2146c..e723775 100644 --- a/templates/catppuccin_latte.toml +++ b/templates/catppuccin_latte.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/chadracula.toml b/templates/chadracula.toml index 744d9d3..4955bfd 100644 --- a/templates/chadracula.toml +++ b/templates/chadracula.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/chadtain.toml b/templates/chadtain.toml index 8fe6766..8ff2eca 100644 --- a/templates/chadtain.toml +++ b/templates/chadtain.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/chocolate.toml b/templates/chocolate.toml index 8233405..5b3e1fd 100644 --- a/templates/chocolate.toml +++ b/templates/chocolate.toml @@ -74,7 +74,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/dark_horizon.toml b/templates/dark_horizon.toml index b5134a0..53c2509 100644 --- a/templates/dark_horizon.toml +++ b/templates/dark_horizon.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/decay.toml b/templates/decay.toml index d07515c..dd05417 100644 --- a/templates/decay.toml +++ b/templates/decay.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/doomchad.toml b/templates/doomchad.toml index 124b004..fd0b193 100644 --- a/templates/doomchad.toml +++ b/templates/doomchad.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/everforest.toml b/templates/everforest.toml index 02a4008..fa50e30 100644 --- a/templates/everforest.toml +++ b/templates/everforest.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/everforest_light.toml b/templates/everforest_light.toml index 450cc91..cac3e51 100644 --- a/templates/everforest_light.toml +++ b/templates/everforest_light.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/falcon.toml b/templates/falcon.toml index f130b37..e0307b3 100644 --- a/templates/falcon.toml +++ b/templates/falcon.toml @@ -75,7 +75,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/gatekeeper.toml b/templates/gatekeeper.toml index bfadbd6..50fce48 100644 --- a/templates/gatekeeper.toml +++ b/templates/gatekeeper.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/gruvbox.toml b/templates/gruvbox.toml index cd489a2..6d6f442 100644 --- a/templates/gruvbox.toml +++ b/templates/gruvbox.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/gruvbox_light.toml b/templates/gruvbox_light.toml index 2833f7b..7221bd9 100644 --- a/templates/gruvbox_light.toml +++ b/templates/gruvbox_light.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/gruvbox_material.toml b/templates/gruvbox_material.toml index 85fcb4b..694ad84 100644 --- a/templates/gruvbox_material.toml +++ b/templates/gruvbox_material.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/gruvchad.toml b/templates/gruvchad.toml index e09f5c2..3af0ad8 100644 --- a/templates/gruvchad.toml +++ b/templates/gruvchad.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/jellybeans.toml b/templates/jellybeans.toml index 9d38463..c2ff858 100644 --- a/templates/jellybeans.toml +++ b/templates/jellybeans.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/kanagawa.toml b/templates/kanagawa.toml index 1ab95e6..8fd4479 100644 --- a/templates/kanagawa.toml +++ b/templates/kanagawa.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/monekai.toml b/templates/monekai.toml index edca2d5..1379c6e 100644 --- a/templates/monekai.toml +++ b/templates/monekai.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/mountain.toml b/templates/mountain.toml index ce8ec67..07d526a 100644 --- a/templates/mountain.toml +++ b/templates/mountain.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/nightfox.toml b/templates/nightfox.toml index 425756c..fef618e 100644 --- a/templates/nightfox.toml +++ b/templates/nightfox.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/nightlamp.toml b/templates/nightlamp.toml index ce0390a..1c85d70 100644 --- a/templates/nightlamp.toml +++ b/templates/nightlamp.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/nightowl.toml b/templates/nightowl.toml index 2b265c2..3fd67b3 100644 --- a/templates/nightowl.toml +++ b/templates/nightowl.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/nord.toml b/templates/nord.toml index 3c8942c..4376799 100644 --- a/templates/nord.toml +++ b/templates/nord.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/oceanic_next.toml b/templates/oceanic_next.toml index 7f3aa80..776350a 100644 --- a/templates/oceanic_next.toml +++ b/templates/oceanic_next.toml @@ -74,7 +74,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/one_light.toml b/templates/one_light.toml index dc3406a..84cbfd3 100644 --- a/templates/one_light.toml +++ b/templates/one_light.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/onedark.toml b/templates/onedark.toml index d45d1ec..1e9d3a1 100644 --- a/templates/onedark.toml +++ b/templates/onedark.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/onenord.toml b/templates/onenord.toml index 13187de..a8e0d9a 100644 --- a/templates/onenord.toml +++ b/templates/onenord.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/onenord_light.toml b/templates/onenord_light.toml index 0810dc0..c4ecf52 100644 --- a/templates/onenord_light.toml +++ b/templates/onenord_light.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/palenight.toml b/templates/palenight.toml index d848e12..a3b76ff 100644 --- a/templates/palenight.toml +++ b/templates/palenight.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/pastelDark.toml b/templates/pastelDark.toml index f48c378..fea2e2b 100644 --- a/templates/pastelDark.toml +++ b/templates/pastelDark.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/radium.toml b/templates/radium.toml index b2108dd..d0e4b13 100644 --- a/templates/radium.toml +++ b/templates/radium.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/rosepine.toml b/templates/rosepine.toml index 3bc3891..c10a686 100644 --- a/templates/rosepine.toml +++ b/templates/rosepine.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/rxyhn.toml b/templates/rxyhn.toml index f3cc0f1..484ed1e 100644 --- a/templates/rxyhn.toml +++ b/templates/rxyhn.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/solarized_dark.toml b/templates/solarized_dark.toml index 6d49b27..938b67c 100644 --- a/templates/solarized_dark.toml +++ b/templates/solarized_dark.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/sweetpastel.toml b/templates/sweetpastel.toml index 686fff9..ed9c8a5 100644 --- a/templates/sweetpastel.toml +++ b/templates/sweetpastel.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/tokyodark.toml b/templates/tokyodark.toml index 170cdb2..c18b01f 100644 --- a/templates/tokyodark.toml +++ b/templates/tokyodark.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/tokyonight.toml b/templates/tokyonight.toml index e61c66e..5382108 100644 --- a/templates/tokyonight.toml +++ b/templates/tokyonight.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/tomorrow_night.toml b/templates/tomorrow_night.toml index 92629b2..46033ea 100644 --- a/templates/tomorrow_night.toml +++ b/templates/tomorrow_night.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/vscode_dark.toml b/templates/vscode_dark.toml index 72d50b7..8084818 100644 --- a/templates/vscode_dark.toml +++ b/templates/vscode_dark.toml @@ -75,7 +75,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/wombat.toml b/templates/wombat.toml index f58dbef..89c4c08 100644 --- a/templates/wombat.toml +++ b/templates/wombat.toml @@ -73,7 +73,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' diff --git a/templates/yoru.toml b/templates/yoru.toml index e59d169..f24b20f 100644 --- a/templates/yoru.toml +++ b/templates/yoru.toml @@ -74,7 +74,7 @@ LineNr = 'grey' FloatBorder = 'blue' # Whitespace = 'base00 -' VertSplit = 'line' -CursorLine = '- base01' +CursorLine = '- one_bg' CursorColumn = '- base01' ColorColumn = '- base01' NormalFloat = '- darker_black' |