Adding which key

This will help freshers get used to keyboard shortcuts easily.
This commit is contained in:
Rajesh Rajendran 2023-01-23 12:57:48 +01:00 committed by GitHub
parent 32744c3f66
commit 2f44d6693c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -26,6 +26,16 @@ require('packer').startup(function(use)
},
}
use { -- WchickKey
"folke/which-key.nvim",
config = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
require("which-key").setup {}
end
}
use { -- Autocompletion
'hrsh7th/nvim-cmp',
requires = { 'hrsh7th/cmp-nvim-lsp', 'L3MON4D3/LuaSnip', 'saadparwaiz1/cmp_luasnip' },