mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-26 23:28:33 +02:00
adding python support
adding python support
This commit is contained in:
parent
9af29a0e1e
commit
d6b609bff0
2 changed files with 5 additions and 1 deletions
5
init.lua
5
init.lua
|
@ -490,6 +490,9 @@ require('lazy').setup({
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
'clangd',
|
'clangd',
|
||||||
'codelldb',
|
'codelldb',
|
||||||
|
'pyright',
|
||||||
|
'rust_analyzer',
|
||||||
|
'black'
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
config = true,
|
config = true,
|
||||||
|
@ -654,7 +657,7 @@ require('lazy').setup({
|
||||||
clangd = {},
|
clangd = {},
|
||||||
-- gopls = {},
|
-- gopls = {},
|
||||||
pyright = {},
|
pyright = {},
|
||||||
-- rust_analyzer = {},
|
rust_analyzer = {},
|
||||||
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
|
-- ... 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:
|
-- Some languages (like typescript) have entire language plugins that can be useful:
|
||||||
|
|
|
@ -23,6 +23,7 @@ return {
|
||||||
|
|
||||||
-- Add your own debuggers here
|
-- Add your own debuggers here
|
||||||
'leoluz/nvim-dap-go',
|
'leoluz/nvim-dap-go',
|
||||||
|
'mfussenegger/nvim-dap-python',
|
||||||
},
|
},
|
||||||
keys = function(_, keys)
|
keys = function(_, keys)
|
||||||
local dap = require 'dap'
|
local dap = require 'dap'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue