Mercurial > dotfiles
comparison dot_config/nvim/init.lua @ 430:5d6bfec9cb5a
Restore old behaviour of wildmenu
author | zegervdv <zegervdv@me.com> |
---|---|
date | Fri, 06 Aug 2021 10:40:35 +0200 |
parents | 5c72a33ba7d7 |
children | b6d669b13e1e |
comparison
equal
deleted
inserted
replaced
429:5c72a33ba7d7 | 430:5d6bfec9cb5a |
---|---|
475 opt.errorbells = false -- Don't you beep to me | 475 opt.errorbells = false -- Don't you beep to me |
476 | 476 |
477 opt.history = 1000 -- Remember last commands | 477 opt.history = 1000 -- Remember last commands |
478 | 478 |
479 opt.wildmenu = true -- Command completion | 479 opt.wildmenu = true -- Command completion |
480 opt.wildmode = { longest = 'full' } -- Complete the fullest match | 480 opt.wildmode = 'longest:full,full' |
481 opt.shortmess:append 'c' -- Hide ins-completion messages | 481 opt.shortmess:append 'c' -- Hide ins-completion messages |
482 | 482 |
483 opt.ttyfast = true -- fast terminal | 483 opt.ttyfast = true -- fast terminal |
484 opt.lazyredraw = true | 484 opt.lazyredraw = true |
485 opt.ttimeoutlen = -1 -- Minimum timeout | 485 opt.ttimeoutlen = -1 -- Minimum timeout |