Skip to content

Instantly share code, notes, and snippets.

@wilfreddenton
Created December 20, 2016 18:44
Show Gist options
  • Save wilfreddenton/070b7c0eca99a8ea3c8048cc46498738 to your computer and use it in GitHub Desktop.
Save wilfreddenton/070b7c0eca99a8ea3c8048cc46498738 to your computer and use it in GitHub Desktop.
My neovim config file
set number
nnoremap <C-p> :FZF<CR>
call plug#begin('~/.local/share/nvim/plugged')
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'zchee/deoplete-go', { 'do': 'make'}
call plug#end()
call deoplete#enable()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment