Created
December 20, 2016 18:44
-
-
Save wilfreddenton/070b7c0eca99a8ea3c8048cc46498738 to your computer and use it in GitHub Desktop.
My neovim config file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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