feat(dap.lua): add configuration for dap and dap-ui plugins to enable debugging features in Neovim

feat(lsp-config.lua): configure python lsp using pylsp to provide language server capabilities for Python files
refactor(magma.lua): remove magma plugin configuration as it is no longer used
feat(mason.lua): add configuration for mason and mason-nvim-dap plugins to enable package management and debugging features in Neovim
refactor(init.lua): set maplocalleader to "\\" for easier keybindings
refactor(remap.lua): remove setting mapleader to " " as it is no longer needed, add keybinding for toggling file explorer using NvimTreeToggle command
This commit is contained in:
David Ibia
2024-01-03 01:13:50 +01:00
parent 589ab57da2
commit 68421c4615
10 changed files with 66 additions and 9 deletions

View File

@@ -117,6 +117,13 @@ lspconfig["pyright"].setup({
on_attach = on_attach,
})
-- configure python lsp
lspconfig["pylsp"].setup({
capabilities = capabilities,
on_attach = on_attach,
})
-- configure docker server
lspconfig["dockerls"].setup({
capabilities = capabilities,