mirror of
https://github.com/timmypidashev/darkbox.nvim.git
synced 2026-04-14 03:33:51 +00:00
Remove stylua workflow
This commit is contained in:
10
.github/workflows/test.yml
vendored
10
.github/workflows/test.yml
vendored
@@ -3,16 +3,6 @@ on: [push, pull_request]
|
||||
name: default
|
||||
|
||||
jobs:
|
||||
stylua:
|
||||
name: stylua
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: JohnnyMorganz/stylua-action@v1
|
||||
with:
|
||||
token: ${{ secrets.DARKBOX_TOKEN }}
|
||||
args: --color always --check lua
|
||||
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
||||
@@ -248,8 +248,10 @@ local function get_groups()
|
||||
DarkboxPurpleUnderline = { undercurl = config.undercurl, sp = colors.purple },
|
||||
DarkboxAquaUnderline = { undercurl = config.undercurl, sp = colors.aqua },
|
||||
DarkboxOrangeUnderline = { undercurl = config.undercurl, sp = colors.orange },
|
||||
Normal = config.transparent_mode and { fg = colors.foreground_1, bg = nil } or { fg = colors.foreground_1, bg = colors.background },
|
||||
NormalFloat = config.transparent_mode and { fg = colors.foreground_1, bg = nil } or { fg = colors.foreground_1, bg = colors.background_1 },
|
||||
Normal = config.transparent_mode and { fg = colors.foreground_1, bg = nil }
|
||||
or { fg = colors.foreground_1, bg = colors.background },
|
||||
NormalFloat = config.transparent_mode and { fg = colors.foreground_1, bg = nil }
|
||||
or { fg = colors.foreground_1, bg = colors.background_1 },
|
||||
NormalNC = config.dim_inactive and { fg = colors.foreground_1, bg = colors.background_1 } or { link = "Normal" },
|
||||
CursorLine = { bg = colors.background_1 },
|
||||
CursorColumn = { link = "CursorLine" },
|
||||
@@ -273,7 +275,8 @@ local function get_groups()
|
||||
StatusLineNC = { fg = colors.background_1, bg = colors.foreground_4, reverse = config.inverse },
|
||||
WinBar = { fg = colors.foreground_4, bg = colors.background },
|
||||
WinBarNC = { fg = colors.foreground_3, bg = colors.background_1 },
|
||||
WinSeparator = config.transparent_mode and { fg = colors.background_3, bg = nil } or { fg = colors.background_3, bg = colors.background },
|
||||
WinSeparator = config.transparent_mode and { fg = colors.background_3, bg = nil }
|
||||
or { fg = colors.background_3, bg = colors.background },
|
||||
WildMenu = { fg = colors.blue, bg = colors.background_2, bold = config.bold },
|
||||
Directory = { link = "DarkboxGreenBold" },
|
||||
Title = { link = "DarkboxGreenBold" },
|
||||
@@ -285,7 +288,8 @@ local function get_groups()
|
||||
LineNr = { fg = colors.background_4 },
|
||||
SignColumn = config.transparent_mode and { bg = nil } or { bg = colors.background_1 },
|
||||
Folded = { fg = colors.gray, bg = colors.background_1, italic = config.italic.folds },
|
||||
FoldColumn = config.transparent_mode and { fg = colors.gray, bg = nil } or { fg = colors.gray, bg = colors.background_1 },
|
||||
FoldColumn = config.transparent_mode and { fg = colors.gray, bg = nil }
|
||||
or { fg = colors.gray, bg = colors.background_1 },
|
||||
Cursor = { reverse = config.inverse },
|
||||
vCursor = { link = "Cursor" },
|
||||
iCursor = { link = "Cursor" },
|
||||
@@ -522,7 +526,12 @@ local function get_groups()
|
||||
htmlLink = { fg = colors.foreground_4, underline = config.underline },
|
||||
htmlSpecialChar = { link = "DarkboxRed" },
|
||||
htmlBold = { fg = colors.foreground, bg = colors.background, bold = config.bold },
|
||||
htmlBoldUnderline = { fg = colors.foreground, bg = colors.background, bold = config.bold, underline = config.underline },
|
||||
htmlBoldUnderline = {
|
||||
fg = colors.foreground,
|
||||
bg = colors.background,
|
||||
bold = config.bold,
|
||||
underline = config.underline,
|
||||
},
|
||||
htmlBoldItalic = { fg = colors.foreground, bg = colors.background, bold = config.bold, italic = true },
|
||||
htmlBoldUnderlineItalic = {
|
||||
fg = colors.foreground,
|
||||
@@ -1021,7 +1030,12 @@ local function get_groups()
|
||||
MiniStatuslineModeReplace = { fg = colors.background, bg = colors.red, bold = config.bold },
|
||||
MiniStatuslineModeVisual = { fg = colors.background, bg = colors.green, bold = config.bold },
|
||||
MiniSurround = { link = "IncSearch" },
|
||||
MiniTablineCurrent = { fg = colors.green, bg = colors.background_1, bold = config.bold, reverse = config.invert_tabline },
|
||||
MiniTablineCurrent = {
|
||||
fg = colors.green,
|
||||
bg = colors.background_1,
|
||||
bold = config.bold,
|
||||
reverse = config.invert_tabline,
|
||||
},
|
||||
MiniTablineFill = { link = "TabLineFill" },
|
||||
MiniTablineHidden = { fg = colors.background_4, bg = colors.background_1, reverse = config.invert_tabline },
|
||||
MiniTablineModifiedCurrent = {
|
||||
|
||||
Reference in New Issue
Block a user