mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
wip
This commit is contained in:
parent
a45ef57a84
commit
b1fa75931e
1 changed files with 62 additions and 0 deletions
62
lua/plugins/js_mine.lua
Normal file
62
lua/plugins/js_mine.lua
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
return {
|
||||||
|
-- {
|
||||||
|
-- "nvim-treesitter/nvim-treesitter",
|
||||||
|
-- opts = function(_, opts)
|
||||||
|
-- vim.list_extend(opts.ensure_installed, {
|
||||||
|
-- "ruby",
|
||||||
|
-- })
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
{
|
||||||
|
"williamboman/mason.nvim",
|
||||||
|
opts = function(_, opts)
|
||||||
|
vim.list_extend(opts.ensure_installed, {
|
||||||
|
"eslint_d",
|
||||||
|
"eslint-lsp",
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"neovim/nvim-lspconfig",
|
||||||
|
opts = {
|
||||||
|
servers = {
|
||||||
|
eslint = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
-- {
|
||||||
|
-- "mfussenegger/nvim-dap",
|
||||||
|
-- dependencies = {
|
||||||
|
-- "suketa/nvim-dap-ruby",
|
||||||
|
-- config = function()
|
||||||
|
-- require("dap-ruby").setup()
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
-- keys = {
|
||||||
|
-- -- https://github.com/mfussenegger/nvim-dap/blob/master/doc/dap.txt
|
||||||
|
-- { "<leader>te", function() require("dap").repl.toggle() end, desc = "DAP Toggle Term" },
|
||||||
|
-- { "<leader>tn", function() require("dap").continue() end, desc = "DAP Next/Continue" },
|
||||||
|
-- { "<leader>tb", function() require("dap").toggle_breakpoint() end, desc = "DAP Toggle Breakpoint" },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- {
|
||||||
|
-- "nvim-neotest/neotest",
|
||||||
|
-- dependencies = {
|
||||||
|
-- "olimorris/neotest-rspec",
|
||||||
|
-- },
|
||||||
|
-- opts = {
|
||||||
|
-- adapters = {
|
||||||
|
-- ["neotest-rspec"] = {
|
||||||
|
-- -- NOTE: By default neotest-rspec uses the system wide rspec gem instead of the one through bundler
|
||||||
|
-- -- rspec_cmd = function()
|
||||||
|
-- -- return vim.tbl_flatten({
|
||||||
|
-- -- "bundle",
|
||||||
|
-- -- "exec",
|
||||||
|
-- -- "rspec",
|
||||||
|
-- -- })
|
||||||
|
-- -- end,
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue