From 1dfcfbc59203866f76921a9f37552b3670f8268a Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Fri, 8 Jul 2016 15:11:44 -0700 Subject: [PATCH] neovim: prepare deoplete --- configuration/common/pkg/neovim.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/configuration/common/pkg/neovim.nix b/configuration/common/pkg/neovim.nix index b29314e..05509f1 100644 --- a/configuration/common/pkg/neovim.nix +++ b/configuration/common/pkg/neovim.nix @@ -187,10 +187,17 @@ in { au FileType go nmap gdt (go-def-tab) " } + " deoplete { +" let g:deoplete#enable_at_startup = 1 +" let g:deoplete#enable_smart_case = 1 + " } ''; vam.knownPlugins = gitpkgs.vimPlugins; # optional vam.pluginDictionaries = [ # full ducomentation at github.com/MarcWeber/vim-addon-manager +# "deoplete-nvim" +# "deoplete-jedi" +# "deoplete-go" "vim-addon-vim2nix" "youcompleteme" "vim-airline" @@ -216,7 +223,7 @@ in { html5lib dbus ] ++ pythonPkgs; - withPython3 = false; + withPython3 = true; }) ]; }