nixpkgs/home/programs/neovim/config/searching.vim
Daniel Siepmann 082ad58af1
Migrate neovim setup
I managed my setup manually.
This commit ports the existing setup to home-manager.

The program module is used to install neovim together with plugins.
Custom plugins are now maintained at Gitea / GitHub and loaded via nix as well.
2022-03-12 11:26:32 +01:00

10 lines
176 B
VimL

" Show corresponding brackets
set showmatch
" Set incremental searching
set incsearch
" Highlight searching
set hlsearch
" Case insensitive search
set ignorecase
set smartcase