(neovim) enable ignorecase

This commit is contained in:
Bartek Stalewski 2025-08-25 18:12:54 +02:00
parent 695bb39c84
commit 9ff94af742
No known key found for this signature in database

View file

@ -12,7 +12,7 @@ vim.o.cursorline = true
vim.o.expandtab = true vim.o.expandtab = true
vim.o.gdefault = true vim.o.gdefault = true
vim.o.hlsearch = true vim.o.hlsearch = true
vim.o.inccommand = "split" vim.o.ignorecase = true
vim.o.number = true vim.o.number = true
vim.o.relativenumber = false vim.o.relativenumber = false
vim.o.shiftround = true vim.o.shiftround = true
@ -31,6 +31,7 @@ vim.o.clipboard = ""
vim.o.conceallevel = 0 vim.o.conceallevel = 0
vim.o.fileencoding = "utf-8" vim.o.fileencoding = "utf-8"
vim.o.foldcolumn = "0" vim.o.foldcolumn = "0"
vim.o.inccommand = "split"
vim.o.mouse = "" vim.o.mouse = ""
vim.o.shiftwidth = 2 vim.o.shiftwidth = 2
vim.o.signcolumn = "yes" vim.o.signcolumn = "yes"