Set wildignorecase (more sane command line completions)

This commit is contained in:
Imbus 2024-10-24 11:22:59 +02:00
parent 229d1b79d9
commit 5adf6b5c0d

View file

@ -33,6 +33,9 @@ vim.opt.undofile = true
vim.opt.ignorecase = true
vim.opt.smartcase = true
-- Ignore case of cmdline (":e ju<TAB>" results in ":e Justfile", for example)
vim.opt.wildignorecase = true
-- Keep signcolumn on by default
vim.opt.signcolumn = 'yes'