From 32591ea9905d7ee16f23ee3def6157f1fedc2c31 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 26 Jan 2014 23:51:05 -0500 Subject: misc software notes --- networking/ipv6vpn.page | 5 +++++ software/vim.page | 10 +++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) 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 `_ \ No newline at end of file + - `vim anti-patterns `_ -- cgit v1.2.3