This commit is contained in:
Christian Nieves
2022-09-27 14:55:48 -05:00
parent 3effd03a36
commit 0139026e84
33 changed files with 39 additions and 36 deletions

Submodule vim/.vim/plugged/asyncrun.vim updated: aa8a99e87e...7ee75ae20c

Submodule vim/.vim/plugged/cmp-buffer updated: 62fc67a2b0...3022dbc916

Submodule vim/.vim/plugged/fzf.vim updated: c491d702b7...9ceac71802

Submodule vim/.vim/plugged/java-syntax.vim updated: 1a5354f955...9a3d76a8c6

Submodule vim/.vim/plugged/linediff.vim updated: c7710dbc59...c627858c6d

Submodule vim/.vim/plugged/lspkind.nvim updated: 57e5b5dfbe...c68b3a0034

Submodule vim/.vim/plugged/nerdcommenter updated: 6d30ebcd42...2a0a05ff98

Submodule vim/.vim/plugged/nvim-cmp updated: 706371f130...2427d06b65

Submodule vim/.vim/plugged/nvim-lsp-installer updated: ae913cb4fd...23820a878a

Submodule vim/.vim/plugged/nvim-lspconfig updated: da7461b596...dc4dac8fcb

Submodule vim/.vim/plugged/nvim-treesitter updated: e9ab034139...0289160c96

Submodule vim/.vim/plugged/nvim-web-devicons updated: 2d02a56189...969728506c

Submodule vim/.vim/plugged/plenary.nvim updated: 31807eef4e...62dc2a7acd

Submodule vim/.vim/plugged/telescope.nvim updated: 8f80e82108...30e2dc5232

Submodule vim/.vim/plugged/trouble.nvim updated: da61737d86...929315ea5f

Submodule vim/.vim/plugged/ultisnips updated: 1edcb40ce7...1914ef242a

Submodule vim/.vim/plugged/vim-airline updated: 61042e3502...78abec3b83

Submodule vim/.vim/plugged/vim-airline-themes updated: 55bad92d24...cc5d3490c8

Submodule vim/.vim/plugged/vim-android updated: b8b684f60a...8911f86284

Submodule vim/.vim/plugged/vim-fugitive updated: 66a921bbe3...dd8107cabf

Submodule vim/.vim/plugged/vim-gitgutter updated: ded11946c0...f19b620319

Submodule vim/.vim/plugged/vim-go updated: b524371788...22b2273cfe

Submodule vim/.vim/plugged/vim-helm updated: 86a63d007f...c2e7b85711

Submodule vim/.vim/plugged/vim-javascript updated: 67a3435bf6...c470ce1399

Submodule vim/.vim/plugged/vim-markdown updated: 3a96439612...c3f83ebb43

Submodule vim/.vim/plugged/vim-signify updated: 69498f6d49...8bc268c79d

Submodule vim/.vim/plugged/vim-snippets updated: c5d977c492...faaa499189

Submodule vim/.vim/plugged/vim-tmux-navigator updated: 9ca5bfe5bd...afb45a55b4

Submodule vim/.vim/plugged/vimux updated: 89604a4464...616fcb4799

View File

@ -176,7 +176,8 @@ nnoremap <leader>cc :CritiqueUnresolvedComments<space><cr>
nnoremap <leader>s :call CitCObsession()<CR>
nnoremap <leader>g :GoogleOutlineWindow<CR>
nnoremap <leader>ps :PiperSelectActiveFiles<CR>
" nnoremap <leader>ps :PiperSelectActiveFiles<CR>
nnoremap <leader>ps :FzfHgFiles<CR>
nnoremap <leader>pl :PiperLoadActiveAsBuffers<CR>
nnoremap <leader>po :PiperOpenPath<CR>

View File

@ -4,7 +4,7 @@ set runtimepath+=/google/src/files/head/depot/google3/experimental/users/tstone/
set runtimepath+=/google/src/files/head/depot/google3/experimental/users/tstone/vim/imp-csearch
Glug! glaive
Glaive imp plugin[mappings] Suggest[default]=buffer,primp,csearch,prompt Report[default]=popupnotify
Glaive imp plugin[mappings] Suggest[default]=buffer,csearch,prompt,primp Report[default]=popupnotify
"
" nnoremap <leader>csi :CsImporter<cr>
nnoremap <leader>csi :ImpSuggest

View File

@ -10,15 +10,16 @@ omap <leader><tab> <plug>(fzf-maps-o)
let g:fzf_preview_window = ['right:50%', 'ctrl-/']
let g:fzf_command_prefix = 'Fzf'
" use the same keybindings for fzf as in shell
" nnoremap <silent> <c-s-t> :FzfHgFiles<CR>
" nnoremap <silent> <c-s-f> :FzfHgRg<space>
let s:hg_command = 'hg files 2>/dev/null'
let s:hg_command = 'hg whatsout --template= -- '
" command! -bang -nargs=* HgFiles
" \ call fzf#vim#grep(
" \ 'git grep --line-number -- '.shellescape(<q-args>), 0,
" \ fzf#vim#with_preview({'dir': systemlist('git rev-parse --show-toplevel')[0]}), <bang>0)
command! -bang FzfHgFiles
\ call fzf#run(fzf#wrap({
\ 'source': s:hg_command,
\ 'options': $FZF_DEFAULT_OPTS . " " . $FZF_CTRL_T_OPTS,
\ }),
\ <bang>0
\ )

View File

@ -24,6 +24,7 @@ Plug 'sso://user/vintharas/telescope-codesearch.nvim'
" UI EXTENSIONS
Plug 'ntpeters/vim-better-whitespace' "auto-set tab/space size
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'vim-airline/vim-airline' " ...
Plug 'vim-airline/vim-airline-themes'