Skip to content

Commit

Permalink
aa
Browse files Browse the repository at this point in the history
  • Loading branch information
wardnath authored Aug 22, 2024
1 parent 15cc404 commit 7687759
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion chezmoi/dot_config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,25 @@ vim.g.maplocalleader = "\\" -- Same for `maplocalleader`
require('lazy').setup({
{'neovim/nvim-lspconfig'},
{'ms-jpq/coq_nvim', branch = 'coq'},
{'github/copilot.vim'}
{'github/copilot.vim'},
{
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
keys = {
{
"<leader>?",
function()
require("which-key").show({ global = false })
end,
desc = "Buffer Local Keymaps (which-key)",
},
},
}
})

vim.g.copilot_no_tab_map = true
Expand Down

0 comments on commit 7687759

Please sign in to comment.