<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Neovim on Austin Wilcox</title><link>https://theaustinwilcox.com/tags/neovim/</link><description>Recent content in Neovim on Austin Wilcox</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Wed, 25 Sep 2024 22:35:17 -0600</lastBuildDate><atom:link href="https://theaustinwilcox.com/tags/neovim/index.xml" rel="self" type="application/rss+xml"/><item><title>Switching To Miryoku</title><link>https://theaustinwilcox.com/posts/switching-to-miryoku/</link><pubDate>Wed, 25 Sep 2024 22:35:17 -0600</pubDate><guid>https://theaustinwilcox.com/posts/switching-to-miryoku/</guid><description>&lt;h1 id="switching-to-miryoku"&gt;Switching to Miryoku&lt;/h1&gt;
&lt;p&gt;I used the &lt;a href="https://github.com/manna-harbour/miryoku"&gt;Miryoku&lt;/a&gt; layout for just over a month, and I&amp;rsquo;m impressed!&lt;/p&gt;
&lt;p&gt;Back in 2021, I started my ergonomic keyboard journey with a &lt;a href="https://www.zsa.io/moonlander"&gt;ZSA Moonlander&lt;/a&gt;. I had done a lot of research on keyboards and found this one to be the best for portability and ergonomics (I was working hybrid at the time). I would recommend this keyboard to anyone, and frankly, any keyboard from ZSA for that matter. At that same time I switched my keyboard layout from QWERTY to &lt;a href="https://colemakmods.github.io/mod-dh/"&gt;Colemak-DH&lt;/a&gt;. After a couple of years with the Moonlander, I 3D printed and hand-wired a &lt;a href="https://imgur.com/a/TKPlpTG"&gt;5x6 Dactyl Manuform&lt;/a&gt;, which has been my daily driver keyboard for the last couple of years. It addresses all the ergonomic needs I felt were missing from the Moonlander, mainly the wells for your fingers to rest in. That slight decrease in finger movement really makes a difference in long typing sessions.&lt;/p&gt;</description></item><item><title>My thoughts on Vimium</title><link>https://theaustinwilcox.com/posts/vimium/</link><pubDate>Sun, 22 Oct 2023 00:00:00 +0000</pubDate><guid>https://theaustinwilcox.com/posts/vimium/</guid><description>&lt;h1 id="my-thoughts-on-vimium"&gt;My thoughts on Vimium&lt;/h1&gt;
&lt;p&gt;&lt;a href="https://github.com/philc/vimium"&gt;Vimium&lt;/a&gt; is a browser extension that allows you to navigate the browser with &lt;a href="https://github.com/vim/vim"&gt;vim&lt;/a&gt;-like commands.&lt;/p&gt;
&lt;p&gt;I have been using it starting early 2023, and needless to say, I am very impressed! The intuitive keybindings match very well to vim making navigating the web from a keyboard pleasant. Especially when I&amp;rsquo;m on the go using a laptop, I don&amp;rsquo;t need to use the track pad as heavily.&lt;/p&gt;
&lt;h2 id="commands-i-use"&gt;Commands I use&lt;/h2&gt;
&lt;p&gt;Here is a compiled list of the commands that I find myself using most often, and what their function is.&lt;/p&gt;</description></item><item><title>Sensible Deletion Remapping for Vim</title><link>https://theaustinwilcox.com/posts/sensible-delete-keybindings/</link><pubDate>Fri, 13 Oct 2023 22:12:07 -0600</pubDate><guid>https://theaustinwilcox.com/posts/sensible-delete-keybindings/</guid><description>&lt;h1 id="sensible-deletion-remapping-for-vim"&gt;Sensible Deletion remapping for Vim&lt;/h1&gt;
&lt;p&gt;I often find myself in this scenario:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;var testVar = &amp;#34;Hello World!&amp;#34;;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Imagine that my cursor is on the !. I want to delete all the text within the double quotes.
If I was at the beginning of the text at H, I could run (in Normal mode) dt&amp;quot; and
that would delete all the text in the double quotes. Now if I want to delete from
! back, I could run dT&amp;quot;, but there is one problem with that. Here is what is remaining:&lt;/p&gt;</description></item><item><title>Tmux Tips</title><link>https://theaustinwilcox.com/posts/tmuxtips/</link><pubDate>Fri, 13 Oct 2023 22:12:07 -0600</pubDate><guid>https://theaustinwilcox.com/posts/tmuxtips/</guid><description>&lt;h1 id="tmux-tips"&gt;Tmux Tips&lt;/h1&gt;
&lt;p&gt;I have been an avid Tmux user since 2021, and I don&amp;rsquo;t know that I could work without it. Tmux is a powerful terminal multiplexer, allowing you to open up mutiple terminals in a single window. My current workflow revolves around using tmux for running processes, sshing into machines, and editing text/code.&lt;/p&gt;
&lt;p&gt;I even went as far as to write my own tmux session manager &lt;a href="https://github.com/austinwilcox/disconnected"&gt;Disconnected&lt;/a&gt; that automates the startup of tmux sessions for me by using a json file to craft the tmux session.&lt;/p&gt;</description></item><item><title>Vim Tip 1</title><link>https://theaustinwilcox.com/posts/vim-tip-1/</link><pubDate>Fri, 02 Sep 2022 15:32:09 -0600</pubDate><guid>https://theaustinwilcox.com/posts/vim-tip-1/</guid><description>&lt;h1 id="vim-tip-1"&gt;Vim Tip 1&lt;/h1&gt;
&lt;p&gt;Welcome to vim tips, where I publish a blog post weekly with a tip on vim that I have found useful.&lt;/p&gt;
&lt;p&gt;I stumbled onto one today that had some use. I wanted to wrap several lines of text in a paragraph tag. The text can look something like this:&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;This is the first line
This is the second line
This is the third line
This is the four line
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;So I hit V (Shift+v) in normal mode, and highligted those four lines. Next I hit : which brings me into command mode on a selection of text.&lt;/p&gt;</description></item></channel></rss>