From 726fd3b71a9e87e178c7517770b6f371f0a05a8f Mon Sep 17 00:00:00 2001 From: Juliano Barbosa Date: Wed, 14 Aug 2024 12:02:44 -0300 Subject: [PATCH] chore(wip): 1 --- init.lua | 3 +++ lua/kickstart/plugins/debug.lua | 10 ++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index 23873582..c50b043f 100644 --- a/init.lua +++ b/init.lua @@ -95,6 +95,9 @@ require('lazy').setup({ 'williamboman/mason.nvim', opts = { ensure_installed = { + "black", + "eslint-lsp", + "prettier", "typescript-language-server" } }, diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 7fc783fa..bb27e809 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -8,16 +8,14 @@ return { -- NOTE: Yes, you can install new plugins here! + 'williamboman/mason.nvim', 'mfussenegger/nvim-dap', + 'jay-babu/mason-nvim-dap.nvim', -- NOTE: And you can specify dependencies as well dependencies = { -- Creates a beautiful debugger UI 'rcarriga/nvim-dap-ui', - -- Installs the debug adapters for you - 'williamboman/mason.nvim', - 'jay-babu/mason-nvim-dap.nvim', - -- Add your own debuggers here 'leoluz/nvim-dap-go', }, @@ -28,6 +26,7 @@ return { require('mason-nvim-dap').setup { -- Makes a best effort to setup the various debuggers with -- reasonable debug configurations + automatic_installation = true, automatic_setup = true, -- You can provide additional configuration to the handlers, @@ -39,6 +38,9 @@ return { ensure_installed = { -- Update this to ensure that you have the debuggers for the langs you want 'delve', + 'python', + 'jq', + 'stylua', }, }