diff options
Diffstat (limited to 'public/articals/neovimlist')
-rw-r--r-- | public/articals/neovimlist | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/public/articals/neovimlist b/public/articals/neovimlist new file mode 100644 index 0000000..958fbd9 --- /dev/null +++ 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> + |