nix/home/config/nvim/module/config/Search.nix

10 lines
169 B
Nix

{ ... }: {
text = ''
vim.opt.hlsearch = true
vim.opt.ignorecase = true
vim.opt.incsearch = true
vim.opt.showmatch = true
vim.opt.smartcase = true
'';
}