remove whichkey, add copilot

This commit is contained in:
Adam Jeniski 2023-05-25 14:08:52 -04:00
parent ebaef7e3a9
commit 2279902b34

View File

@ -110,16 +110,5 @@ return require('packer').startup(function(use)
vim.keymap.set("n", "<leader>to", ":SymbolsOutline<cr>") vim.keymap.set("n", "<leader>to", ":SymbolsOutline<cr>")
end end
}) })
-- Lua use('github/copilot.vim')
use {
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
require("which-key").setup {
i = { "j", "k", "<space>", "<leader>" },
v = { "j", "k" },
}
end
}
end) end)