neovim

add smartcase and case settings

+4 -1
+4 -1
candy/lua/marshmallow/defaults.lua
··· 74 74 vim.opt.exrc = true 75 75 76 76 -- Completion -- 77 - 78 77 vim.opt.completeopt = "menuone,noselect,fuzzy" 79 78 vim.opt.wildoptions = "fuzzy,pum,tagfile" 79 + 80 + -- Search -- 81 + vim.opt.ignorecase = true 82 + vim.opt.smartcase = true