From 349f52b6bfa337bcafc3b5e75c41f397e4571a9e Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Mon, 3 Nov 2025 11:57:09 +0100 Subject: [PATCH] Update .vimrc --- .vimrc | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/.vimrc b/.vimrc index 774c410..224cfd6 100644 --- a/.vimrc +++ b/.vimrc @@ -41,34 +41,3 @@ set smartindent set tabstop=4 set shiftwidth=4 -" ctrlp with plugins -" see https://ctrlpvim.github.io/ctrlp.vim/ -" set runtimepath^=~/.vim/bundle/ctrlp.vim - -" add git root to path -function! AddGitRootToVimPath() - if executable('git') - let l:git_root = system('git -C ' . expand('%:p:h') . ' rev-parse --show-toplevel 2>/dev/null') - if v:shell_error == 0 - let l:git_root = substitute(l:git_root, '\n', '', 'g') - execute 'set path+=' . l:git_root . '/**' - endif - endif -endfunction - -autocmd BufEnter * call AddGitRootToVimPath() - -" homemade ctrl-p -set path+=** -set wildmenu -set wildmode=longest:full,full -set wildoptions=pum,fuzzy -set wildignore+=*.o,*.a,*.class,*.pyc,*/node_modules/*,*/dist/* -nnoremap :tabfind* - -" ctrl-j for terminal -nnoremap :below terminal ++rows=10 - -" ctrl-k-b for explorer -nnoremap :30Vex -