<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Workflow on Inverted Tree</title>
    <link>https://inverted-tree.pages.dev/categories/workflow/</link>
    <description>Recent content in Workflow on Inverted Tree</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Wed, 12 Feb 2025 18:30:00 +0000</lastBuildDate>
    <atom:link href="https://inverted-tree.pages.dev/categories/workflow/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>An adequate neovim config</title>
      <link>https://inverted-tree.pages.dev/posts/an-adequate-neovim-config/</link>
      <pubDate>Wed, 12 Feb 2025 18:30:00 +0000</pubDate>
      <guid>https://inverted-tree.pages.dev/posts/an-adequate-neovim-config/</guid>
      <description>&lt;p&gt;&lt;img alt=&#34;nvim_perennial&#34; loading=&#34;lazy&#34; src=&#34;https://pub-610e38254acb47cea52a77d9d4b58499.r2.dev/blog/a111564c-nvim_perennial.webp&#34;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;tl;dr&lt;/strong&gt;: Neovim has come a long way from an experimental vim fork that it was at inception and is veritably, in my opinion, the hotbed for open source editor innovation currently. However customising it can feel daunting especially since things are changing rapidly.&lt;/p&gt;
&lt;p&gt;Having lived through &lt;a href=&#34;https://en.wikipedia.org/wiki/Editor_war&#34;&gt;vi vs emacs&lt;/a&gt; I was a full on emacs person jumping through my ocaml code with the venerable &lt;a href=&#34;https://github.com/ocaml/tuareg&#34;&gt;tuareg mode&lt;/a&gt; which is loved and maintained to this day. At that time, vim support for ocaml didn&amp;rsquo;t exist, thus emacs came out on top for me.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Resolve merge conflicts like a pro with neovim</title>
      <link>https://inverted-tree.pages.dev/posts/resolve-merge-conflicts-like-a-pro-with-neovim/</link>
      <pubDate>Sun, 09 Feb 2025 18:30:00 +0000</pubDate>
      <guid>https://inverted-tree.pages.dev/posts/resolve-merge-conflicts-like-a-pro-with-neovim/</guid>
      <description>&lt;p&gt;&lt;img alt=&#34;diffview&#34; loading=&#34;lazy&#34; src=&#34;https://pub-610e38254acb47cea52a77d9d4b58499.r2.dev/blog/312b56e5-diffview.webp&#34;&gt;&lt;/p&gt;
&lt;p&gt;(screenshot taken from diffview.nvim repository)&lt;/p&gt;
&lt;p&gt;Over the years, I&amp;rsquo;ve gone through so many merge tools - kdiff3, meld, beyond compare, Kaleidoscope. Nvim being my editor of choice, fortunately, has a rich ecosystem of plugins where I can set up an uber merge workflow using &lt;code&gt;diffview.nvim&lt;/code&gt; and avoid using external tools altogether.&lt;/p&gt;
&lt;h5 id=&#34;getting-started&#34;&gt;Getting started&lt;/h5&gt;
&lt;p&gt;Make sure you have the latest nvim installed (I have v0.10.4). Although I use &lt;a href=&#34;https://lazyvim.org&#34;&gt;lazyvim&lt;/a&gt; as the base to provide the basic (and some advanced) editor features, I have to set recourse to &lt;em&gt;diffview.nvim&lt;/em&gt; to ease my merging process.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Command line tools for the productive web developer</title>
      <link>https://inverted-tree.pages.dev/posts/cli-tools-web-dev/</link>
      <pubDate>Thu, 29 Dec 2022 18:30:00 +0000</pubDate>
      <guid>https://inverted-tree.pages.dev/posts/cli-tools-web-dev/</guid>
      <description>&lt;p&gt;In my &lt;a href=&#34;https://inverted-tree.com/command-line-tools-to-make-your-life-easier/&#34;&gt;previous post&lt;/a&gt;, I discussed some general purpose command line utilities that help ease your way around the command line. In this post we&amp;rsquo;ll discuss some command line utilities that are indispensable to my web development workflow, and might come in handy for you too :)&lt;/p&gt;
&lt;h4 id=&#34;pgclimycli&#34;&gt;pgcli/mycli&lt;/h4&gt;
&lt;p&gt;All web apps depend on a database of some kind. Thus, communicating with a database is one of the most common tasks a web developer has to perform. Although MySQL and PostgreSQL come bundled with their own CLI tools, there are options like pgcli/mycli which provide more powerful interfaces to the same databases, with features like auto completion, command history, syntax highlighting and many more.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Speeding up my zsh prompt: Part 2</title>
      <link>https://inverted-tree.pages.dev/posts/speeding-up-my-zsh-prompt-part-2/</link>
      <pubDate>Mon, 26 Sep 2022 18:30:00 +0000</pubDate>
      <guid>https://inverted-tree.pages.dev/posts/speeding-up-my-zsh-prompt-part-2/</guid>
      <description>&lt;p&gt;In the previous &lt;a href=&#34;https://inverted-tree.com/speeding-up-my-zsh-prompt-part-1/&#34;&gt;post&lt;/a&gt; I profiled my zsh load to debug the monumental shell load time which is really annoying for me, since I spend all my time in the shell.&lt;/p&gt;
&lt;p&gt;I think I&amp;rsquo;m gonna get rid of &lt;code&gt;compinit&lt;/code&gt; totally and look at the profiling data. Let&amp;rsquo;s dive in&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;#  autoload -Uz compinit
#  if [[ -n ${HOME}/.zcompdump(#qN.mh+24) ]]; then
 #  compinit;
#  else
 #  compinit -C;
#  fi;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Launching the profiler now, the results are-&lt;/p&gt;</description>
    </item>
    <item>
      <title>Speeding up my zsh prompt - part 1</title>
      <link>https://inverted-tree.pages.dev/posts/speeding-up-my-zsh-prompt-part-1/</link>
      <pubDate>Mon, 19 Sep 2022 18:30:00 +0000</pubDate>
      <guid>https://inverted-tree.pages.dev/posts/speeding-up-my-zsh-prompt-part-1/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m a big fan of the &lt;code&gt;z shell&lt;/code&gt;. I use it with the &lt;a href=&#34;https://github.com/spaceship-prompt/spaceship-prompt&#34;&gt;spaceship prompt&lt;/a&gt; and &lt;a href=&#34;https://github.com/zplug/zplug&#34;&gt;zplug&lt;/a&gt; for plugin management.&lt;/p&gt;
&lt;p&gt;Right now, it takes an uncomfortable amount of time to load up the prompt on terminal emulator launch, which is annoying for me since I like everything to be snappy, at least on the command line.&lt;/p&gt;
&lt;h4 id=&#34;overview-of-my-zshrc&#34;&gt;Overview of my zshrc&lt;/h4&gt;
&lt;p&gt;It&amp;rsquo;s pretty basic, boasts of a &lt;code&gt;zplug&lt;/code&gt; installation for plugin management and some attendant plugins.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Command line tools to make your life easier</title>
      <link>https://inverted-tree.pages.dev/posts/command-line-tools-to-make-your-life-easier/</link>
      <pubDate>Tue, 05 Mar 2019 18:30:00 +0000</pubDate>
      <guid>https://inverted-tree.pages.dev/posts/command-line-tools-to-make-your-life-easier/</guid>
      <description>&lt;p&gt;If you&amp;rsquo;re like me, you spend most of your time in the command line, where saving even a few keystrokes can help you become significantly more productive (and happier :). Here are some tools that I&amp;rsquo;ve found to be incredibly helpful and have augmented my love for the command line through their sheer awesomeness&lt;/p&gt;
&lt;h4 id=&#34;bat&#34;&gt;Bat&lt;/h4&gt;
&lt;p&gt;Bat is a successor to the unix &lt;code&gt;cat&lt;/code&gt; command that boasts many superpowers, like preview with a pager, syntax highlighting, and even git changes. It supports most of the programming languages out of the box. You could just alias &lt;code&gt;cat&lt;/code&gt; to point to &lt;code&gt;bat&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
