plugins: add venv-selector
- Adds `venv-selector` to ease the setting of the needed virtual environment for python. - Adds pyright as a python LSP server. Co-Authored-by: iGor milhit <igor@milhit.ch>main
parent
2959893e49
commit
b17723a4b5
2
init.lua
2
init.lua
|
@ -458,7 +458,7 @@ end
|
||||||
local servers = {
|
local servers = {
|
||||||
-- clangd = {},
|
-- clangd = {},
|
||||||
-- gopls = {},
|
-- gopls = {},
|
||||||
-- pyright = {},
|
pyright = {},
|
||||||
-- rust_analyzer = {},
|
-- rust_analyzer = {},
|
||||||
-- tsserver = {},
|
-- tsserver = {},
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
return {
|
||||||
|
'linux-cultist/venv-selector.nvim',
|
||||||
|
dependencies = { 'neovim/nvim-lspconfig', 'nvim-telescope/telescope.nvim', 'mfussenegger/nvim-dap-python' },
|
||||||
|
opts = {
|
||||||
|
-- Your options go here
|
||||||
|
-- name = "venv",
|
||||||
|
-- auto_refresh = false
|
||||||
|
},
|
||||||
|
event = 'VeryLazy', -- Optional: needed only if you want to type `:VenvSelect` without a keymapping
|
||||||
|
keys = {
|
||||||
|
-- Keymap to open VenvSelector to pick a venv.
|
||||||
|
{ '<leader>vs', '<cmd>VenvSelect<cr>' },
|
||||||
|
-- Keymap to retrieve the venv from a cache (the one previously used for the same project directory).
|
||||||
|
{ '<leader>vc', '<cmd>VenvSelectCached<cr>' },
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue