<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Zerdaris</title>
    <description>The latest articles on DEV Community by Zerdaris (@zerdaris).</description>
    <link>https://dev.to/zerdaris</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F123363%2F0a8f9588-e45c-41a1-80e6-5beb33df20ef.jpeg</url>
      <title>DEV Community: Zerdaris</title>
      <link>https://dev.to/zerdaris</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/zerdaris"/>
    <language>en</language>
    <item>
      <title>Installing Neovim on Chromebook</title>
      <dc:creator>Zerdaris</dc:creator>
      <pubDate>Sun, 26 Dec 2021 16:11:58 +0000</pubDate>
      <link>https://dev.to/zerdaris/installing-neovim-on-chromebook-53di</link>
      <guid>https://dev.to/zerdaris/installing-neovim-on-chromebook-53di</guid>
      <description>&lt;p&gt;Hello!&lt;/p&gt;

&lt;p&gt;This is my first blog post! I didn't know which subject to talk about and wanted to write small for a start.&lt;/p&gt;

&lt;p&gt;I wanted to give a try of &lt;a href="https://neovim.io/"&gt;neovim&lt;/a&gt; on my Chromebook, but there was no binary compiled for it, and binaries from Debian are too old.&lt;/p&gt;

&lt;p&gt;If you don't want to read the &lt;a href="https://github.com/neovim/neovim/wiki/Installing-Neovim#install-from-source"&gt;install from source&lt;/a&gt; documentation, follow along!&lt;/p&gt;

&lt;p&gt;I'm going to assume that you already have the Linux VM setup.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install prerequisites
&lt;/h2&gt;

&lt;p&gt;Open the terminal and run the following command to install the build tools required.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;sudo apt-get install ninja-build gettext libtool libtool-bin autoconf automake cmake g++ pkg-config unzip curl doxygen&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Install Neovim
&lt;/h2&gt;

&lt;p&gt;Go to the &lt;a href="https://github.com/neovim/neovim/releases"&gt;neovim releases page&lt;/a&gt; to download the latest version. At the time of writing, the latest stable is v0.6.0, so download, extract it and go in the folder like following:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;wget https://github.com/neovim/neovim/archive/refs/tags/v0.6.0.tar.gz
&lt;span class="nb"&gt;tar &lt;/span&gt;xvf v0.6.0.tar.gz
&lt;span class="nb"&gt;cd &lt;/span&gt;neovim-0.6.0/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I don't like to install packages system-wide so I compiled with a destination to &lt;code&gt;~/tools/neovim&lt;/code&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;make &lt;span class="nv"&gt;CMAKE_EXTRA_FLAGS&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"-DCMAKE_INSTALL_PREFIX=&lt;/span&gt;&lt;span class="nv"&gt;$HOME&lt;/span&gt;&lt;span class="s2"&gt;/tools/neovim"&lt;/span&gt;
make &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The only thing left to do is to add the &lt;code&gt;bin&lt;/code&gt; folder to your path. Add the following at the end of your &lt;code&gt;~/.bashrc&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;export &lt;/span&gt;&lt;span class="nv"&gt;PATH&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="nv"&gt;$HOME&lt;/span&gt;&lt;span class="s2"&gt;/tools/neovim/bin:&lt;/span&gt;&lt;span class="nv"&gt;$PATH&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;--&lt;br&gt;
Happy Neovim-ing! :)&lt;/p&gt;

&lt;p&gt;Next, I'm interested in configuring neovim with vue3!&lt;/p&gt;

</description>
      <category>chromebook</category>
      <category>neovim</category>
      <category>firstpost</category>
    </item>
  </channel>
</rss>
