Skip to content

Commit

Permalink
feat: use codicons icons
Browse files Browse the repository at this point in the history
See #79
  • Loading branch information
rcarriga committed Sep 11, 2022
1 parent f1ac221 commit e682e44
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lua/neotest/config/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ define_highlights()
---@class neotest.Config: neotest.CoreConfig
---@field log_level number Minimum log levels, one of vim.log.levels
---@field consumers table<string, neotest.Consumer>
---@field icons table
---@field icons table Icons used throughout the UI. Defaults use VSCode's codicons
---@field highlights table<string, string>
---@field floating neotest.Config.floating
---@field strategies neotest.Config.strategies
Expand Down Expand Up @@ -131,11 +131,11 @@ local default_config = {
-- {"⠄", "⠆", "⠇", "⠋", "⠙", "⠸", "⠰", "⠠", "⠰", "⠸", "⠙", "⠋", "⠇", "⠆"},
-- { "⠋", "⠙", "⠚", "⠒", "⠂", "⠂", "⠒", "⠲", "⠴", "⠦", "⠖", "⠒", "⠐", "⠐", "⠒", "⠓", "⠋" },
running_animated = { "/", "|", "\\", "-", "/", "|", "\\", "-" },
passed = "",
running = "🗘",
failed = "",
skipped = "",
unknown = "?",
passed = "",
running = "",
failed = "",
skipped = "",
unknown = "",
non_collapsible = "",
collapsed = "",
expanded = "",
Expand Down

0 comments on commit e682e44

Please sign in to comment.