Merge branch 'master' of https://gitea.brudi.xyz/kenobi/dotfiles
This commit is contained in:
14
nvim/lua/plugins/neotest-rust.lua
Normal file
14
nvim/lua/plugins/neotest-rust.lua
Normal file
@ -0,0 +1,14 @@
|
||||
return {
|
||||
{ "rouge8/neotest-rust" },
|
||||
{
|
||||
"nvim-neotest/neotest",
|
||||
opts = function(_, opts)
|
||||
table.insert(
|
||||
opts.adapters,
|
||||
require("neotest-rust")({
|
||||
args = { "--no-capture" },
|
||||
})
|
||||
)
|
||||
end,
|
||||
},
|
||||
}
|
15
nvim/lua/plugins/neotree.lua
Normal file
15
nvim/lua/plugins/neotree.lua
Normal file
@ -0,0 +1,15 @@
|
||||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
opts = {
|
||||
require("neo-tree").setup({
|
||||
window = {
|
||||
mappings = {
|
||||
["P"] = function(state)
|
||||
local node = state.tree:get_node()
|
||||
require("neo-tree.ui.renderer").focus_node(state, node:get_parent_id())
|
||||
end,
|
||||
},
|
||||
},
|
||||
}),
|
||||
},
|
||||
}
|
6
nvim/lua/plugins/nvim-dap-vscode-js.lua
Normal file
6
nvim/lua/plugins/nvim-dap-vscode-js.lua
Normal file
@ -0,0 +1,6 @@
|
||||
return {
|
||||
"mxsdev/nvim-dap-vscode-js",
|
||||
opts = function()
|
||||
adapters = { "pwa-node", "pwa-chrome", "pwa-msedge", "node-terminal", "pwa-extensionHost" }
|
||||
end,
|
||||
}
|
4
nvim/lua/plugins/vscode-js-debug.lua
Normal file
4
nvim/lua/plugins/vscode-js-debug.lua
Normal file
@ -0,0 +1,4 @@
|
||||
return {
|
||||
"microsoft/vscode-js-debug",
|
||||
build = "npm install --legacy-peer-deps && npx gulp vsDebugServerBundle && mv dist out",
|
||||
}
|
Reference in New Issue
Block a user