From 99b9d657bb02190b9801cdec2442b2607eb8b163 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Thu, 11 Apr 2024 23:09:57 +0200 Subject: [PATCH] chore: Add basic README.md --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d2e7254 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# jsonfly + +Fly through your JSON files with ease. +Search ✨ blazingly fast ✨ for keys via [Telescope](https://github.com/nvim-telescope/telescope.nvim), and navigate through your JSON structure with ease. + +## Installation + +Install with your favorite plugin manager, for example with [lazy.nvim](https://github.com/folke/lazy.nvim): + +```lua +{ + "nvim-telescope/telescope.nvim", + dependencies = { + -- "Myzel394/telescope-last-positions", + -- Other dependencies + -- .. + "Myzel394/jsonfly", + }, +}, +``` + +Load the extension with: + +```lua +require("telescope").load_extension("jsonfly") +``` + +## Usage + +Go to a JSON file and run: + +```lua +:Telescope jsonfly +``` +