mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 11:40:36 +00:00
fix(absolute/after/colorscheme.lua): comment out unnecessary code for setting Normal and NormalFloat highlight groups fix(absolute/after/jedi.lua): enable popup on dot for jedi feat(absolute/after/tokyonight.lua): add support for tokyonight theme with specific configuration feat(absolute/plugins/tokyonight.lua): add tokyonight plugin with configuration to load after plugin setup fix(absolute/remap.lua): remove extra empty line
16 lines
492 B
Lua
16 lines
492 B
Lua
|
|
vim.g["jedi#popup_on_dot"] = 1
|
|
|
|
|
|
-- 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"
|
|
|