mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
feat: add project-nvim to plugin imports
This commit is contained in:
parent
d03d3f0b83
commit
e00ad1f653
4 changed files with 24 additions and 4 deletions
17
flake.lock
17
flake.lock
|
@ -1246,6 +1246,22 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"project-nvim": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1680567592,
|
||||||
|
"narHash": "sha256-avV3wMiDbraxW4mqlEsKy0oeewaRj9Q33K8NzWoaptU=",
|
||||||
|
"owner": "ahmedkhalf",
|
||||||
|
"repo": "project.nvim",
|
||||||
|
"rev": "8c6bad7d22eef1b71144b401c9f74ed01526a4fb",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "ahmedkhalf",
|
||||||
|
"repo": "project.nvim",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"registers": {
|
"registers": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -1349,6 +1365,7 @@
|
||||||
"orgmode-nvim": "orgmode-nvim",
|
"orgmode-nvim": "orgmode-nvim",
|
||||||
"plenary-nvim": "plenary-nvim",
|
"plenary-nvim": "plenary-nvim",
|
||||||
"presence-nvim": "presence-nvim",
|
"presence-nvim": "presence-nvim",
|
||||||
|
"project-nvim": "project-nvim",
|
||||||
"registers": "registers",
|
"registers": "registers",
|
||||||
"rnix-lsp": "rnix-lsp",
|
"rnix-lsp": "rnix-lsp",
|
||||||
"rust-tools": "rust-tools",
|
"rust-tools": "rust-tools",
|
||||||
|
|
|
@ -292,6 +292,12 @@
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Project Management
|
||||||
|
project-nvim = {
|
||||||
|
url = "github:ahmedkhalf/project.nvim";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
|
||||||
# Visuals
|
# Visuals
|
||||||
nvim-cursorline = {
|
nvim-cursorline = {
|
||||||
url = "github:yamatsum/nvim-cursorline";
|
url = "github:yamatsum/nvim-cursorline";
|
||||||
|
|
|
@ -2,8 +2,4 @@
|
||||||
dag = import ./dag.nix {inherit lib;};
|
dag = import ./dag.nix {inherit lib;};
|
||||||
booleans = import ./booleans.nix {inherit lib;};
|
booleans = import ./booleans.nix {inherit lib;};
|
||||||
types = import ./types {inherit lib;};
|
types = import ./types {inherit lib;};
|
||||||
|
|
||||||
imports = [
|
|
||||||
./assertions.nix
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,6 +78,7 @@ with lib; let
|
||||||
"modes-nvim"
|
"modes-nvim"
|
||||||
"vim-repeat"
|
"vim-repeat"
|
||||||
"smartcolumn"
|
"smartcolumn"
|
||||||
|
"project-nvim"
|
||||||
];
|
];
|
||||||
# You can either use the name of the plugin or a package.
|
# You can either use the name of the plugin or a package.
|
||||||
pluginsType = with types;
|
pluginsType = with types;
|
||||||
|
|
Loading…
Reference in a new issue