Skip to content

Instantly share code, notes, and snippets.

@spamwax
Created March 14, 2020 06:02
Show Gist options
  • Save spamwax/b541c04b9029491c1c9d5f094656d2ff to your computer and use it in GitHub Desktop.
Save spamwax/b541c04b9029491c1c9d5f094656d2ff to your computer and use it in GitHub Desktop.
minimum init.vim to test fzfmru
let g:python3_host_prog = '~/.pyenv/versions/py3neovim/bin/python3'
call plug#begin('~/.config/nvim/plugged')
Plug '/usr/local/opt/fzf'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'pbogut/fzf-mru.vim'
call plug#end()
set signcolumn=yes
set hidden
let g:fzf_mru_no_sort = 1
command! -bang -nargs=? FZFMru call fzf_mru#actions#mru(<q-args>,
\ {'window': {'width': 0.9, 'height': 0.6},
\ 'options': ['--reverse']})
nnoremap <C-p> :FZFMru<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment