From ab1f2bf154ce6801e179d1e5c5a8e8cc8631612a Mon Sep 17 00:00:00 2001 From: voidarc Date: Sat, 20 Jun 2026 14:10:02 +0100 Subject: [PATCH] grammar --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3ce1311..e4d4a3f 100644 --- a/README.md +++ b/README.md @@ -22,19 +22,19 @@ You can add the repo to your flake like this: } } ``` -and then add this to your package list: +And then add this to your package list: ```nix inputs.nvim-voidarc.packages.${stdenv.hostPlatform.system}.remote ``` -I don't recommend making it follow the system nixpkgs as treesitter needs unstable in order to work properly +I don't recommend making it follow the system nixpkgs as treesitter needs unstable in order to work properly. ### Install into nix config and add local config -Clone this repo into your nvim config directory (make sure to back up beforehand) +Clone this repo into your nvim config directory (make sure to back up beforehand): ``` git clone https://git.voidarc.co.uk/voidarc/nvim ~/.config/nvim ``` -Then add that folder as an input to your flake +Then add that folder as an input to your flake: ```nix { inputs = { @@ -43,9 +43,9 @@ Then add that folder as an input to your flake } ``` Adjust the path and the username to what they are on your system. The input should be the path of the directory -that contains the flake, in this case the flake's path would be `/home/username/.config/nvim/flake.nix` +that contains the flake, in this case the flake's path would be `/home/username/.config/nvim/flake.nix`. -Then add the default package to your system pacakge +Then add the default package to your system package: ```nix inputs.nvim-voidarc.packages.${stdenv.hostPlatform.system}.default ``` @@ -66,11 +66,11 @@ The leader key is space, configurable at the top of the `init.lua` file. When re #### Navigation -- ff - Open Telescope fuzzy finder -- fn - Open Telescope file manager -- fg - Telescope live grep (only works in git repos afaik) -- fb - Telescope list of open buffers -- bd - Delete focused buffer +- \ff - Open Telescope fuzzy finder +- \fn - Open Telescope file manager +- \fg - Telescope live grep (only works in git repos afaik) +- \fb - Telescope list of open buffers +- \bd - Delete focused buffer If a file is open, Telescope is configured to jump to the pane/tab where that file is open, rather than open it in the current pane. This allows for a more consistent editing experience, such as having seperate tabs for backend and frontend files.