summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--networking/ipv6vpn.page5
-rw-r--r--software/vim.page10
2 files changed, 14 insertions, 1 deletions
diff --git a/networking/ipv6vpn.page b/networking/ipv6vpn.page
index 2f82b8e..6a49230 100644
--- a/networking/ipv6vpn.page
+++ b/networking/ipv6vpn.page
@@ -69,6 +69,11 @@ Then copy the following to /etc/openvpn/server.conf:
up /usr/local/bin/ipv6_tunnel_up.sh
Create /usr/local/bin/ipv6_tunnel_up.sh:
+
+ #!/usr/bin/env sh
+ ip link set tun0 up
+ ip addr add fec0::1/96 dev tun0
+ ip route add 2600:3c03:e001:1301::/64 via fec0::2 dev tun0
Then make it executable:
diff --git a/software/vim.page b/software/vim.page
index 32743ea..84db121 100644
--- a/software/vim.page
+++ b/software/vim.page
@@ -91,7 +91,15 @@ TODO: document my current multi-window configuration, how to re-scale, etc.
``Ctrl-W =`` equalizes window sizes (``Ctrl-W`` is the vierport meta sequence).
+Spellcheck
+-------------
+Do ``set spell`` to start spellchecking in "fly" mode (mispellings
+highlighted); do ``set nospell`` to undo.
+
+Hovering over a word in visual, do ``zg`` to add the word to your dictionary,
+``z=`` to show suggestions,
+
Links to more...
------------------
- - `vim anti-patterns <http://blog.sanctum.geek.nz/vim-anti-patterns/>`_ \ No newline at end of file
+ - `vim anti-patterns <http://blog.sanctum.geek.nz/vim-anti-patterns/>`_