From db6e8567c303dd82aba0ab075cd748eac3ac9ea0 Mon Sep 17 00:00:00 2001 From: Jonathan Apodaca Date: Mon, 4 Nov 2024 22:41:45 -0700 Subject: [PATCH] README.md: fix typos --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f0a177e..0b8c060 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Welcome to **u.nvim** – a powerful Lua library designed to enhance your text manipulation experience in NeoVim, focusing primarily on a context-aware "Range" utility. This utility allows you to work efficiently with text selections based on various conditions, in a variety of contexts, making coding and editing more intuitive and productive. -This is meant to be used as a **library**, not a plugin. On its own, `u.nvim` does nothing on its own. It is meant to be used by plugin authors, to make their lives easier based on the variety of utilities I found I needed while growing my NeoVim config. +This is meant to be used as a **library**, not a plugin. On its own, `u.nvim` does nothing. It is meant to be used by plugin authors, to make their lives easier based on the variety of utilities I found I needed while growing my NeoVim config. ## Features @@ -13,11 +13,11 @@ This is meant to be used as a **library**, not a plugin. On its own, `u.nvim` do ### Installation -Lazy: +lazy.nvim: ```lua -- Setting `lazy = true` ensures that the library is only loaded -- when `require 'u.' is called. -{ 'jrop/u.nvim', lazy = true } +{ 'https://codeberg.org/jrop/u.nvim', lazy = true } ``` ## Usage