feat: Update flake.lock and nvim pets-nvim

This commit is contained in:
Uttarayan Mondal
2024-04-24 01:15:17 +05:30
parent dd3fe3989e
commit ea58de269a
4 changed files with 87 additions and 57 deletions

View File

@@ -10,7 +10,10 @@
url = "github:nix-community/neovim-nightly-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
pets = {
url = "github:giusgad/pets.nvim";
flake = false;
};
neorg = {
url = "github:nvim-neorg/neorg/v7.0.0";
flake = false;

View File

@@ -603,6 +603,9 @@ in rec {
ignore_blank_lines = true, -- ignore blank lines when sending visual select lines
})
require("pets").setup({
-- your options here
})
'';
package = pkgs.neovim-nightly;
@@ -634,6 +637,7 @@ in rec {
# Wut
image-nvim
ChatGPT-nvim
pets-nvim
# UI and UX
vim-abolish

View File

@@ -61,6 +61,12 @@
src = inputs.neorg-telescope;
dependencies = [final.vimPlugins.telescope-nvim final.vimPlugins.neorg];
};
pets-nvim = final.pkgs.vimUtils.buildVimPlugin {
pname = "pets-nvim";
version = "1";
src = inputs.pets;
dependencies = [final.pkgs.vimPlugins.hologram-nvim final.pkgs.vimPlugins.nui-nvim];
};
};
};
tree-sitter-grammars = final: prev: {