this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use fzf.vim

+5 -21
-2
nvim/ftplugin/rust.vim
··· 1 1 compiler cargo 2 2 3 - setl colorcolumn=100 4 - 5 3 nnoremap <buffer> g= :RustFmt<CR> 6 4 7 5 let g:rustfmt_autosave = 1
+3 -2
nvim/init.vim
··· 12 12 Plug 'myusuf3/numbers.vim' 13 13 Plug 'nathanaelkane/vim-indent-guides' 14 14 Plug 'raymond-w-ko/vim-niji' 15 + Plug 'kshenoy/vim-signature' 15 16 16 17 " Languages 17 18 Plug 'LnL7/vim-nix' ··· 32 33 33 34 " Project management 34 35 Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } 36 + Plug 'junegunn/fzf.vim' 35 37 Plug 'tpope/vim-vinegar' 36 38 Plug 'wakatime/vim-wakatime' 37 39 Plug 'justinmk/vim-dirvish' ··· 58 60 Plug 'haya14busa/incsearch-easymotion.vim' 59 61 Plug 'haya14busa/incsearch-fuzzy.vim' 60 62 Plug 'haya14busa/incsearch.vim' 61 - Plug 'mhinz/vim-grepper' 62 63 63 64 " Build & Configuration 64 65 Plug 'benekastah/neomake' ··· 77 78 " }}} 78 79 " Colors {{{ 79 80 " Show 80 column 80 - set colorcolumn=80 81 + let &colorcolumn="81,+" . join(range(1,100), ',+') 81 82 set cursorline 82 83 83 84 " Use Dark Solarized theme
+2 -1
nvim/plugin/files.vim
··· 1 1 let g:loaded_nerwPlugin = 1 2 - noremap <silent> <C-p> :<C-u>FZF<CR> 2 + noremap <C-p> :<C-u>Files<CR> 3 + noremap gt :<C-u>Tags<CR>
-16
nvim/plugin/search.vim
··· 5 5 " Better search 6 6 set magic 7 7 8 - " Global search 9 - let g:grepper = { 10 - \ 'open': 0, 11 - \ 'switch': 0, 12 - \ 'jump': 0, 13 - \ 'tools': ['ag', 'git'], 14 - \ } 15 - 16 - noremap g/ :<C-u>Grepper<CR> 17 - 18 - nmap gs <plug>(GrepperOperator) 19 - xmap gs <plug>(GrepperOperator) 20 - 21 - command! -nargs=* -complete=file GG Grepper -tool git -open -query <args> 22 - command! -nargs=* -complete=file Ag Grepper -tool ag -open -query <args> 23 - 24 8 " Local file search 25 9 map / <Plug>(incsearch-forward) 26 10 map ? <Plug>(incsearch-backward)