feat: extras.ui.edgy

This commit is contained in:
punkfairie 2025-03-16 15:51:42 -07:00
parent 9301482cda
commit fd41fbaf5b
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 30 additions and 23 deletions

View file

@ -56,11 +56,11 @@
categoryDefinitions = { categoryDefinitions = {
pkgs, pkgs,
settings, # settings,
categories, # categories,
extra, # extra,
name, name,
mkNvimPlugin, # mkNvimPlugin,
... ...
}: { }: {
lspsAndRuntimeDeps = with pkgs; let lspsAndRuntimeDeps = with pkgs; let
@ -271,6 +271,9 @@
nvim-nio nvim-nio
# UI # UI
# edgy.nvim
edgy-nvim
# Mini Animate # Mini Animate
{ {
plugin = mini-animate; plugin = mini-animate;
@ -342,7 +345,7 @@
packageDefinitions = { packageDefinitions = {
nvim = { nvim = {
pkgs, pkgs,
mkNvimPlugin, # mkNvimPlugin,
... ...
}: { }: {
settings = { settings = {
@ -385,25 +388,28 @@
devShells.default = devenv.lib.mkShell { devShells.default = devenv.lib.mkShell {
inherit inputs pkgs; inherit inputs pkgs;
modules = [ modules = [
({ (
pkgs, # {
config, # pkgs,
... # config,
}: { # ...
packages = [ # }:
defaultPackage _: {
]; packages = [
defaultPackage
];
pre-commit.hooks = { pre-commit.hooks = {
alejandra.enable = true; alejandra.enable = true;
deadnix.enable = true; deadnix.enable = true;
statix.enable = true; statix.enable = true;
stylua.enable = true; stylua.enable = true;
end-of-file-fixer.enable = true; end-of-file-fixer.enable = true;
trim-trailing-whitespace.enable = true; trim-trailing-whitespace.enable = true;
no-commit-to-branch.enable = true; no-commit-to-branch.enable = true;
}; };
}) }
)
]; ];
}; };
}) })

View file

@ -76,6 +76,7 @@ require('nixCatsUtils.lazyCat').setup(
{ import = 'lazyvim.plugins.extras.test.core' }, { import = 'lazyvim.plugins.extras.test.core' },
{ import = 'lazyvim.plugins.extras.ui.edgy' },
{ import = 'lazyvim.plugins.extras.ui.mini-animate' }, { import = 'lazyvim.plugins.extras.ui.mini-animate' },
{ import = 'lazyvim.plugins.extras.ui.treesitter-context' }, { import = 'lazyvim.plugins.extras.ui.treesitter-context' },