Set wildignorecase (more sane command line completions)
This commit is contained in:
parent
229d1b79d9
commit
5adf6b5c0d
1 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,9 @@ vim.opt.undofile = true
|
||||||
vim.opt.ignorecase = true
|
vim.opt.ignorecase = true
|
||||||
vim.opt.smartcase = 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
|
-- Keep signcolumn on by default
|
||||||
vim.opt.signcolumn = 'yes'
|
vim.opt.signcolumn = 'yes'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue