This commit is contained in:
Christian Nieves
2023-03-27 12:32:57 -05:00
parent dce44d8c0c
commit ddd2d48665
17 changed files with 52 additions and 83 deletions

View File

@ -1,8 +1,6 @@
source /usr/share/vim/google/glug/bootstrap.vim
source /usr/share/vim/google/core.vim
Plug 'vim-scripts/vcscommand.vim'
let g:VCSCommandDisableMappings = 1
let g:signify_skip_filename_pattern = ['\.pipertmp.*']
@ -33,9 +31,6 @@ Glug buganizer plugin[mappings]
Glug relatedfiles plugin[mappings]
Glug g4
" Update the current file's build deps
Plug 'junegunn/fzf', { 'do': { -> fzf#install() }, 'commit': '3f75a83' }
Plug 'junegunn/fzf.vim'
Glug outline-window
Glug fzf-query

View File

@ -1,13 +0,0 @@
Plug 'kyoh86/vim-ripgrep'
" command! -nargs=+ -complete=file Rg :call ripgrep#search(<q-args>)
command! -nargs=+ -complete=file Rg :call s:ripgrep(<q-args>)
function s:ripgrep(searchterm)
let l:dir = fnameescape(expand("%:p:h")."/")
let l:rel = ripgrep#path#rel(l:dir)
" echomsg 'DIR: ' . l:dir . '\tREL: ' . l:rel
call ripgrep#call('rg --smart-case --json ' . a:searchterm, l:dir, l:rel)
endfunction
nnoremap <leader>rg :Rg<Space>
let g:rg_root_marks = ['BUILD', 'METADATA', '.git']

View File

@ -1,6 +0,0 @@
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
if filereadable(expand("~/use_google"))
Glug ultisnips-google
endif