mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 14:41:20 +00:00
17 lines
297 B
VimL
17 lines
297 B
VimL
" enter the current millenium
|
|
set nocompatible
|
|
|
|
" enable syntax and plugins (for netrw)
|
|
syntax enable
|
|
filetype plugin on
|
|
|
|
" FINDING FILES:
|
|
|
|
" Search down into subfolders
|
|
" Provides tab-completion for all file-related tasks
|
|
|
|
set path+=**
|
|
|
|
" Display all matching files we tab complete
|
|
set wildmenu
|
|
|