mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
feat(supertab.lua): add Supertab plugin and configure it to be loaded after Absolute configuration
17 lines
607 B
Lua
17 lines
607 B
Lua
vim.g["jedi#popup_on_dot"] = 1
|
|
vim.g["jedi#use_tabs_not_buffers"] = 0
|
|
vim.g["jedi#popup_select_first"] = 0
|
|
vim.g["jedi#show_call_signatures"] = "2"
|
|
|
|
|
|
-- 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"
|