website

This is my amazing website!
git clone git://shipwreckt.co.uk/website
Log | Files | Refs | README | LICENSE

neovimlist.html (1462B)


      1 <!DOCTYPE html>
      2 <html lang="en-GB">
      3   <head>
      4     <meta charset="UTF-8">
      5     <meta name="author" content="Shipwreckt">
      6     <meta name="viewport" content="width=device-width, initial-scale=1.0">
      7     <title>Neovim index</title>
      8     <link rel="stylesheet" href="../styles.css">
      9     <link rel="icon" href="../Images/favi.png" type="image/x-icon">
     10   </head>
     11   <body>
     12     <header>
     13       <nav>
     14         <ul>
     15           <li><a href="../index.html">Home</a></li>
     16           <li><a href="../links.html">Links</a></li>
     17           <li><a href="../projects.html">Projects</a></li>
     18           <li><a href="../contact.html">Contact</a></li>
     19         </ul>
     20       </nav>
     21     </header>
     22     <main>
     23       <h1>Neovim</h1>
     24       <p>This is a collection of material I have written about the NeoVim text editor. So have a little read and see if there is anything that you like.</p>
     25       <hr>
     26       <h2>Why Use Neovim?</h2>
     27       <p>Neovim is a fast and modern text editor with amazing documentation, which has led to a wide range of plugins being developed for it. It is also lightweight and easy to learn the basics.</p>
     28       <section class="posts">
     29         <h2>Basics</h2>
     30         <ul>
     31           <li><a href="neovim/0move">How to move around</a></li>
     32           <li><a href="neovim/1modes">Diffrent modes</a></li>
     33           <li><a href="neovim/2exitingnvim">How exit neovim</a></li>
     34           <li><a href="neovim/3Basic">Basic commands</a></li>
     35         </ul>
     36     </main>
     37   </body>
     38 </html>
     39