mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
chore(jedi.lua): remove unused keybindings in jedi plugin configuration chore(lsp-config.lua): remove pyright language server configuration feat(lsp-config.lua): add jedi_completion plugin configuration to pylsp language server feat(lsp-config.lua): add jedi_language_server configuration chore(mason.lua): remove pyright language server from mason plugin configuration feat(mason.lua): add jedi_language_server to mason plugin configuration chore(poet-v.lua): add autocommand to activate virtualenv when entering a buffer with .venv or .py file
16 lines
492 B
Lua
16 lines
492 B
Lua
|
|
vim.g["jedi#popup_on_dot"] = 0
|
|
|
|
|
|
-- Keybindings
|
|
vim.g["jedi#goto_command"] = "" -- "<leader>d"
|
|
vim.g["jedi#goto_assignments_command"] = "<leader>gD"
|
|
vim.g["jedi#goto_stubs_command"] = "" -- "<leader>s"
|
|
vim.g["jedi#goto_definitions_command"] = "gd"
|
|
vim.g["jedi#documentation_command"] = "K"
|
|
vim.g["jedi#usages_command"] = "<leader>n"
|
|
vim.g["jedi#completions_command"] = "<C-Space>"
|
|
vim.g["jedi#rename_command"] = "<leader>rn"
|
|
vim.g["jedi#rename_command_keep_name"] = "" -- "<leader>R"
|
|
|