diff --git a/README.md b/README.md index b7e840e..c32f1aa 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Assume you are already dealing with a working Elixir install. Install the host archive, we will use it to build the host locally. ``` -$ mix archive.install https://github.com/dm1try/nvim/releases/download/v0.1.1-alpha/nvim.ez +$ mix archive.install https://github.com/dm1try/nvim/releases/download/v0.2.0/nvim.ez ``` Build and install the host by running `nvim.install` and providing the path to nvim config(`~/.config/nvim` by default on linux systems) @@ -117,7 +117,7 @@ end # ~/.config/nvim/rplugin/elixir/scripts/my_plug.exs defmodule MyPlug do use NVim.Plugin - + command hello_from_plug do NVim.Session.vim_command "echo 'hello'" end diff --git a/installer/mix.exs b/installer/mix.exs index b7a64a3..5dcbccc 100644 --- a/installer/mix.exs +++ b/installer/mix.exs @@ -3,7 +3,7 @@ defmodule NVim.Installer.Mixfile do def project do [app: :nvim_installer, - version: "0.1.2", + version: "0.2.0", elixir: "~> 1.3"] end diff --git a/mix.exs b/mix.exs index 7d999b7..61af5e6 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule NVim.Mixfile do def project do [app: :nvim, - version: "0.1.2", + version: "0.2.0", preferred_cli_env: [espec: :test], elixir: "~> 1.3.0", elixirc_paths: ["lib", "installer"],