aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-02-16 22:07:37 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-02-16 22:12:05 +1300
commite82ab805580e5fb7dc6a11a85160c5f9b44f62c9 (patch)
tree8a8da522b0f16af48bb07489225d3cae5d40b0dd /README.md
parentMerge branch 'release/v0.28.0' into develop (diff)
downloaddotfiles-e82ab805580e5fb7dc6a11a85160c5f9b44f62c9.tar.gz
dotfiles-e82ab805580e5fb7dc6a11a85160c5f9b44f62c9.zip
Add Makefile tweak for Neovim installation
A cursory test suggests that all of this configuration works well on Neovim, or at least the bad stuff is gracefully ignored. Allow changing the destination path for ~/.vimrc and ~/.vim/config to suit Neovim's paths, including some instructions and some bloviating in README.md.
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
index 5109afdb..89441b7a 100644
--- a/README.md
+++ b/README.md
@@ -96,6 +96,7 @@ Configuration is included for:
* [tidy](http://www.html-tidy.org/) -- HTML/XHTML linter and tidier
* [tmux](https://tmux.github.io/) -- Terminal multiplexer similar to GNU Screen
* [Vim](http://www.vim.org/) -- Vi IMproved, a text editor
+ * [Neovim](https://neovim.io/) -- An "emphatic fork" of Vim
* [X11](https://www.x.org/wiki/) -- Windowing system with network transparency
for Unix
@@ -364,6 +365,20 @@ script (`sh.vim`).
Third-party plugins are in submodules in `~/.vim/bundle`. They are installed
into `~/.vim` as normal.
+#### Neovim
+
+I test my configuration every now and then with the [Neovim
+fork](https://neovim.io/). To install the configuration where Neovim will use
+it, do this:
+
+ $ nvd=${XDG_CONFIG_HOME:-"$HOME"/.config}/nvim
+ $ make install-vim VIMRC=$nvd/init.vim VIMDIR=$nvd
+
+Neovim's [godless
+arrogance](https://twitter.com/tpope/status/437019518444240896)
+notwithstanding, I do rather like it overall, but I'm not presently using it as
+my daily driver and so it might balk at recent addenda to my configuration.
+
Scripts
-------