feat: extras.ui.edgy
This commit is contained in:
parent
9301482cda
commit
fd41fbaf5b
2 changed files with 30 additions and 23 deletions
52
flake.nix
52
flake.nix
|
@ -56,11 +56,11 @@
|
|||
|
||||
categoryDefinitions = {
|
||||
pkgs,
|
||||
settings,
|
||||
categories,
|
||||
extra,
|
||||
# settings,
|
||||
# categories,
|
||||
# extra,
|
||||
name,
|
||||
mkNvimPlugin,
|
||||
# mkNvimPlugin,
|
||||
...
|
||||
}: {
|
||||
lspsAndRuntimeDeps = with pkgs; let
|
||||
|
@ -271,6 +271,9 @@
|
|||
nvim-nio
|
||||
|
||||
# UI
|
||||
# edgy.nvim
|
||||
edgy-nvim
|
||||
|
||||
# Mini Animate
|
||||
{
|
||||
plugin = mini-animate;
|
||||
|
@ -342,7 +345,7 @@
|
|||
packageDefinitions = {
|
||||
nvim = {
|
||||
pkgs,
|
||||
mkNvimPlugin,
|
||||
# mkNvimPlugin,
|
||||
...
|
||||
}: {
|
||||
settings = {
|
||||
|
@ -385,25 +388,28 @@
|
|||
devShells.default = devenv.lib.mkShell {
|
||||
inherit inputs pkgs;
|
||||
modules = [
|
||||
({
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
packages = [
|
||||
defaultPackage
|
||||
];
|
||||
(
|
||||
# {
|
||||
# pkgs,
|
||||
# config,
|
||||
# ...
|
||||
# }:
|
||||
_: {
|
||||
packages = [
|
||||
defaultPackage
|
||||
];
|
||||
|
||||
pre-commit.hooks = {
|
||||
alejandra.enable = true;
|
||||
deadnix.enable = true;
|
||||
statix.enable = true;
|
||||
stylua.enable = true;
|
||||
end-of-file-fixer.enable = true;
|
||||
trim-trailing-whitespace.enable = true;
|
||||
no-commit-to-branch.enable = true;
|
||||
};
|
||||
})
|
||||
pre-commit.hooks = {
|
||||
alejandra.enable = true;
|
||||
deadnix.enable = true;
|
||||
statix.enable = true;
|
||||
stylua.enable = true;
|
||||
end-of-file-fixer.enable = true;
|
||||
trim-trailing-whitespace.enable = true;
|
||||
no-commit-to-branch.enable = true;
|
||||
};
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
1
init.lua
1
init.lua
|
@ -76,6 +76,7 @@ require('nixCatsUtils.lazyCat').setup(
|
|||
|
||||
{ import = 'lazyvim.plugins.extras.test.core' },
|
||||
|
||||
{ import = 'lazyvim.plugins.extras.ui.edgy' },
|
||||
{ import = 'lazyvim.plugins.extras.ui.mini-animate' },
|
||||
{ import = 'lazyvim.plugins.extras.ui.treesitter-context' },
|
||||
|
||||
|
|
Loading…
Reference in a new issue