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 = {
|
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;
|
||||||
};
|
};
|
||||||
})
|
}
|
||||||
|
)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
1
init.lua
1
init.lua
|
@ -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' },
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue