21 lines
316 B
VimL
21 lines
316 B
VimL
set nocompatible
|
|
set ignorecase
|
|
set smartcase
|
|
set hlsearch
|
|
set relativenumber
|
|
|
|
syntax enable
|
|
filetype plugin on
|
|
|
|
" open nested file with :find file.name
|
|
" include * in path for fuzzy find
|
|
set path+=**
|
|
set wildmenu
|
|
|
|
let g:netrw_banner=0
|
|
let g:netrw_liststyle=3
|
|
|
|
nmap <esc> <cmd>nohlsearch<cr>
|
|
|
|
colorscheme catppuccin
|