Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
TwIStOy committed Apr 10, 2024
1 parent 103205d commit 2056ce1
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/dotvim/pkgs/coding/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ return {
require("dotvim.pkgs.coding.plugins.nvim-surround"),
require("dotvim.pkgs.coding.plugins.nvim-ts-context-commentstring"),
require("dotvim.pkgs.coding.plugins.ultimate-autopair"),
require("dotvim.pkgs.coding.plugins.neotest"),
},
}
30 changes: 30 additions & 0 deletions lua/dotvim/pkgs/coding/plugins/neotest.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---@type dotvim.core.plugin.PluginOption
return {
"nvim-neotest/neotest",
dependencies = {
"nvim-neotest/nvim-nio",
"plenary.nvim",
"antoinemadec/FixCursorHold.nvim",
"nvim-treesitter/nvim-treesitter",
},
opts = {
adapters = {},
icons = {
running_animated = {"", "", "", "", "", "", "", ""},
passed = "󰄳",
running = "󰁪",
failed = "󰅙",
skipped = "󱧧",
unknown = "󰀨",
non_collapsible = "",
collapsed = "",
expanded = "",
child_prefix = "",
final_child_prefix = "",
child_indent = "",
final_child_indent = " ",
watching = "",
notify = "",
},
},
}
9 changes: 9 additions & 0 deletions lua/dotvim/pkgs/extra/languages/rust.lua
Original file line number Diff line number Diff line change
Expand Up @@ -280,5 +280,14 @@ return {
}
end,
},
{
"neotest",
dependencies = {
"rouge8/neotest-rust",
},
opts = function(_, opts)
table.insert(opts.adapters, require("neotest-rust"))
end,
},
},
}
1 change: 1 addition & 0 deletions lua/dotvim/pkgs/ui/plugins/_others.lua
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ return {
"NvimSeparator",
"",
"noice",
"neotest-summary",
},
buftype = { "terminal" },
},
Expand Down

0 comments on commit 2056ce1

Please sign in to comment.