Add fuzzy finding to vim

This commit is contained in:
don philipe
2024-07-22 13:34:05 +02:00
parent 3fc90c18b4
commit 34f74ac6b1

2
.vimrc
View File

@@ -13,6 +13,8 @@ set scrolloff=8
set enc=utf-8 set enc=utf-8
set wrapscan " start searching at the beginning when EOF reached set wrapscan " start searching at the beginning when EOF reached
set matchpairs+=<:> " add angle brackets to list of matching bracket pairs set matchpairs+=<:> " add angle brackets to list of matching bracket pairs
set path+=** " search files in all subdirs with 'find' command
set wildmenu " show all matching files when tab completing
" simple appending closing characters automatically " simple appending closing characters automatically
inoremap { {}<Left> inoremap { {}<Left>