diff --git a/CONFIG/nvim/ftplugin/python.lua b/CONFIG/nvim/ftplugin/python.lua index 0c4d68f..e654a2e 100644 --- a/CONFIG/nvim/ftplugin/python.lua +++ b/CONFIG/nvim/ftplugin/python.lua @@ -2,3 +2,4 @@ vim.o.colorcolumn = "100" vim.opt.tabstop = 4 vim.opt.shiftwidth = 4 vim.opt.softtabstop = 4 +vim.g.no_python_maps = 1 diff --git a/CONFIG/nvim/init.lua b/CONFIG/nvim/init.lua index 8cb2e1f..a5a2e48 100644 --- a/CONFIG/nvim/init.lua +++ b/CONFIG/nvim/init.lua @@ -941,7 +941,6 @@ local function makespec_whichkey() "folke/which-key.nvim", event = "VeryLazy", opts = { - defaults = {}, spec = { { mode = { "n", "v" }, @@ -981,7 +980,7 @@ local function makespec_whichkey() keys = { { "?", - function() require("which-key").show({ global = false }) end, + function() require("which-key").show({ global = true }) end, desc = "Buffer Keymaps (which-key)", }, {