website

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

commit dc76ead9978ea3cf3d5c43c86e0d25f932293203
parent 71703eea78723efc4f7e9169e280e34aaad72f96
Author: Shipwreckt <shipwreckt@mailfence.com>
Date:   Wed,  7 Aug 2024 16:12:37 +0100

Added neovim junk

Diffstat:
Apublic/articals/neovim/1move | 52++++++++++++++++++++++++++++++++++++++++++++++++++++
Apublic/articals/neovimlist | 35+++++++++++++++++++++++++++++++++++
Mpublic/index.html | 1+
3 files changed, 88 insertions(+), 0 deletions(-)

diff --git a/public/articals/neovim/1move b/public/articals/neovim/1move @@ -0,0 +1,52 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Neovim index</title> + <link rel="stylesheet" href="../../styles.css"> + <link rel="icon" href="../../Images/favi.png" type="image/x-icon"> +</head> +<body> + <header> + <nav> + <ul> + <li><a href="../index.html">Home</a></li> + <li><a href="../links.html">Links</a></li> + <li><a href="../projects.html">Projects</a></li> + <li><a href="../contact.html">Contact</a></li> + </ul> + </nav> + </header> + <main class="description"> + <h1>Moving around in Neovim</h1> + <hr> + <h2>Basic movements</h2> + <p>Moving around in Neovim is pretty easy so this will not be a long tutorial!</p> + <p>To move around in Neovim you need to be in the 'Normal mode' where you cannot type anything.</p> + <ul> + <li>move left - h</li> + <li>move right - l</li> + <li>move up - k</li> + <li>move down - j</li> + </ul> + <p>Moving around in Neovim is not that hard as you can see! It might feel weird now but the more you use Neovim the more you get used to it. Now lets move onto some of the more advanced movements.</p> + <hr> + <h2>Spesific movements</h2> + <p>To go to spesific parts of the file is pretty easy.</p> + <ul> + <li>move to the top - gg</li> + <li>move to the bottom - G</li> + <li>move to spesific line - 2G</li> + <li>move to the top of the screen - H</li> + <li>move to the middle of the screen - M</li> + <li>move to the bottom of the screen - L</li> + </ul> + <hr> + <center> + <p>That is all now you know how to move around in Neovim! </p> + <hr> + <pre text-align=center><a href="../neovimlist">Back</a> <a href="">Next</a> + </main> +</body> +</html> diff --git a/public/articals/neovimlist b/public/articals/neovimlist @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Neovim index</title> + <link rel="stylesheet" href="../styles.css"> + <link rel="icon" href="../Images/favi.png" type="image/x-icon"> +</head> +<body> + <header> + <nav> + <ul> + <li><a href="../index.html">Home</a></li> + <li><a href="../links.html">Links</a></li> + <li><a href="../projects.html">Projects</a></li> + <li><a href="../contact.html">Contact</a></li> + </ul> + </nav> + </header> + <main class="description"> + <h1>Neovim</h1> + <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> + <hr> + <h2>Why Use Neovim?</h2> + <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> + <section class="posts"> + <h2>Tutorials</h2> + <ul> + <li><a href="neovim/1move">How To Move in Neovim?</a></li> + </ul> + </main> +</body> +</html> + diff --git a/public/index.html b/public/index.html @@ -38,6 +38,7 @@ <section class="posts"> <h2>Articles</h2> <ul> + <li>07-08-2024 - <a href="articals/neovimlist">Neovim run through</a></li> <li>25-07-2024 - <a href="articals/linuxlist">Articles about Linux</a></li> <li>30-05-2024 - <a href="articals/0How_To_Stay_Safe_Online">How to stay safe online</a></li> </ul>