options: ignore case

This commit is contained in:
Guanran Wang 2024-02-23 13:33:11 +08:00
parent 6c4e1d6777
commit 48bb73761b
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -18,6 +18,10 @@ vim.opt.mouse = "a"
vim.opt.scrolloff = 8
vim.opt.sidescrolloff = 8
-- Searching
vim.opt.ignorecase = true
vim.opt.smartcase = true
-- System integration
vim.cmd([[ set noswapfile ]])
vim.opt.clipboard = "unnamedplus"