https://git.dlma.com/dotfiles.git/tree/b589ab9002c32cd2a86afc992550ece40c21ab8aRecent commits to dotfiles.git (b589ab9002c32cd2a86afc992550ece40c21ab8a)2024-03-18T19:06:42-07:00tag:gitlist.org,2012:commit/b589ab9002c32cd2a86afc992550ece40c21ab8aOnly show encoding and format if not utf-8[unix]2024-03-18T19:06:42-07:00dblumedavid.blume@gmail.com
<pre></pre>
tag:gitlist.org,2012:commit/e3cfc56df6bbd9885d58fdd0ea846839d8821696Drop column and line number from vim status line2024-03-18T09:45:37-07:00dblumedavid.blume@gmail.com
<pre>Don't think I've ever used status line's column
And saying "%X of T" was better than "%X = L/T".
This tightens up the status line.
</pre>
tag:gitlist.org,2012:commit/cd366f55454f7b103c7b32c7122367a514a5a44bSoften the status line colors a little2024-03-17T23:48:17-07:00dblumedavid.blume@gmail.com
<pre></pre>
tag:gitlist.org,2012:commit/77e94621abe8b4a2c4831cb3e753c39a9463d2a3Change text in README.md, add wider preview image2024-03-16T10:27:57-07:00dblumedavid.blume@gmail.com
<pre></pre>
tag:gitlist.org,2012:commit/24630480f8dd2761ad5c767bf6c9a9c0e4400d04Sensibly, in neovim <C-Space> is Ctrl+space2024-03-16T01:18:59-07:00dblumedavid.blume@gmail.com
<pre></pre>
tag:gitlist.org,2012:commit/8f484ad54bb2168dc4610db080a30ac59e4e09efAdded an image of a screen capture2024-03-15T20:12:57-07:00dblumedavid.blume@gmail.com
<pre>Because who doesn't need an image of their own workspace in a repo
of their own dotfiles?
</pre>
tag:gitlist.org,2012:commit/224ed0fb7ed9a5bf76d911c609b5c5fe27e1603bAlways start on first line in git commit buffers2024-03-15T10:56:40-07:00dblumedavid.blume@gmail.com
<pre>At one time &filetype was set in BufReadPost, but not now.
Fix is to use a FileType autocmd for gitcommit.
If it were more complicated, could put in [after/]ftplugin/$FILETYPE.vim
per https://www.reddit.com/r/vim/comments/k1c63f/should_the_filetype_option_be_set_by_the_time_the/
</pre>
tag:gitlist.org,2012:commit/88066908d6543770f7ffa1071f9abc12a720552fRetrieve git branch only on new buffers2024-03-15T00:10:25-07:00dblumedavid.blume@gmail.com
<pre>Before this commit, git rev-parse would've been called for every key
press (if the statusline had added the git part).
</pre>
tag:gitlist.org,2012:commit/eb37046eb1d17eade5579fc2fc6125fed7332ad6Make test for nvim compatible with macOS.2024-03-14T11:10:18-07:00dblumedavid.blume@gmail.com
<pre>Could have used
hash <the_command> # For regular commands. Or...
type <the_command> # To check built-ins and keywords
But why not just go with POSIX compatibility?
</pre>
tag:gitlist.org,2012:commit/44d837682919dd2fddfb3378ac7384fc1ad42e32Make git branch fit on status line; Sep │ not |2024-03-14T09:54:22-07:00dblumedavid.blume@gmail.com
<pre>Note I'm still not actually using git branch on the vim status line,
I don't want all those git calls happening. But it's staged there just
in case I change my mind.
</pre>