From a0e91e65859382c727eae25397cfc4c767aa957c Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 14 Oct 2020 17:36:25 +0200 Subject: [PATCH] [ADD] Neovim package It needs a python plugin to be compatible with Vim's python interface. I use it for UltiSnips. --- Makefile | 2 ++ nvim/.config/nvim/init.vim | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 nvim/.config/nvim/init.vim diff --git a/Makefile b/Makefile index 31f158a..fe547bd 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,7 @@ CLI_PACKAGES := \ isort \ mimetype \ mypy \ + nvim \ remind \ scripts \ shell \ @@ -50,6 +51,7 @@ CLI_DEPENDENCIES := \ community/mosh \ community/mypy \ community/pandoc \ + community/python-pynvim \ community/ripgrep \ community/rust-analyzer \ community/rustup \ diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim new file mode 100644 index 0000000..f182e5b --- /dev/null +++ b/nvim/.config/nvim/init.vim @@ -0,0 +1,3 @@ +set runtimepath^=~/.vim runtimepath+=~/.vim/after +let &packpath = &runtimepath +source ~/.vimrc