Move keybinds to init.lua, add neotest and tiny-inline
This commit is contained in:
18
lua/plugins/neotest.lua
Normal file
18
lua/plugins/neotest.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
return {
|
||||
"nvim-neotest/neotest",
|
||||
dependencies = {
|
||||
"nvim-neotest/nvim-nio",
|
||||
"nvim-neotest/neotest-python",
|
||||
"nvim-lua/plenary.nvim",
|
||||
"antoinemadec/FixCursorHold.nvim",
|
||||
"nvim-treesitter/nvim-treesitter"
|
||||
},
|
||||
config = function()
|
||||
require("neotest").setup({
|
||||
adapters = {
|
||||
require("neotest-python")
|
||||
}
|
||||
})
|
||||
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user