From d6b609bff0e1df3afc331e6bdf9636513434ed83 Mon Sep 17 00:00:00 2001 From: Simon Ayoub Date: Tue, 17 Dec 2024 22:22:27 +1100 Subject: [PATCH] adding python support adding python support --- init.lua | 5 ++++- lua/kickstart/plugins/debug.lua | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 7ac0d189..cd2e5470 100644 --- a/init.lua +++ b/init.lua @@ -490,6 +490,9 @@ require('lazy').setup({ ensure_installed = { 'clangd', 'codelldb', + 'pyright', + 'rust_analyzer', + 'black' }, }, config = true, @@ -654,7 +657,7 @@ require('lazy').setup({ clangd = {}, -- gopls = {}, pyright = {}, - -- rust_analyzer = {}, + rust_analyzer = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- -- Some languages (like typescript) have entire language plugins that can be useful: diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 2ada6672..a9e81815 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -23,6 +23,7 @@ return { -- Add your own debuggers here 'leoluz/nvim-dap-go', + 'mfussenegger/nvim-dap-python', }, keys = function(_, keys) local dap = require 'dap'