comparison dot_config/nvim/init.lua @ 428:5dd4d52dee21

Fix wildmode setting to only complete upto common match
author zegervdv <zegervdv@me.com>
date Sun, 01 Aug 2021 18:49:15 +0200
parents 3cd158f2c6f9
children 5c72a33ba7d7
comparison
equal deleted inserted replaced
427:3cd158f2c6f9 428:5dd4d52dee21
478 opt.errorbells = false -- Don't you beep to me 478 opt.errorbells = false -- Don't you beep to me
479 479
480 opt.history = 1000 -- Remember last commands 480 opt.history = 1000 -- Remember last commands
481 481
482 opt.wildmenu = true -- Command completion 482 opt.wildmenu = true -- Command completion
483 opt.wildmode = { longest = 'full', 'full' } -- Complete the fullest match 483 opt.wildmode = { longest = 'full' } -- Complete the fullest match
484 opt.shortmess:append 'c' -- Hide ins-completion messages 484 opt.shortmess:append 'c' -- Hide ins-completion messages
485 485
486 opt.ttyfast = true -- fast terminal 486 opt.ttyfast = true -- fast terminal
487 opt.lazyredraw = true 487 opt.lazyredraw = true
488 opt.ttimeoutlen = -1 -- Minimum timeout 488 opt.ttimeoutlen = -1 -- Minimum timeout