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

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