Merge pull request #1 from nvim-lua/master
Atualização com o repositório nvim-lua/kickstart.nvim
This commit is contained in:
commit
c494e8023d
3 changed files with 25 additions and 11 deletions
4
init.lua
4
init.lua
|
|
@ -140,7 +140,6 @@ vim.opt.signcolumn = 'yes'
|
|||
vim.opt.updatetime = 250
|
||||
|
||||
-- Decrease mapped sequence wait time
|
||||
-- Displays which-key popup sooner
|
||||
vim.opt.timeoutlen = 300
|
||||
|
||||
-- Configure how new splits should be opened
|
||||
|
|
@ -279,6 +278,9 @@ require('lazy').setup({
|
|||
'folke/which-key.nvim',
|
||||
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
|
||||
opts = {
|
||||
-- delay between pressing a key and opening which-key (milliseconds)
|
||||
-- this setting is independent of vim.opt.timeoutlen
|
||||
delay = 0,
|
||||
icons = {
|
||||
-- set icon mappings to true if you have a Nerd Font
|
||||
mappings = vim.g.have_nerd_font,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue