plugin/explorer: use version with fixed position
This commit is contained in:
parent
3a3ad59261
commit
8fbfb97b9d
2 changed files with 24 additions and 0 deletions
18
flake.lock
18
flake.lock
|
@ -50,11 +50,29 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nvim-tree-lua": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1663635041,
|
||||||
|
"narHash": "sha256-5n8dAMHWImhgtVjXic8wnV33l7VWLzRXM0W22Uk76vo=",
|
||||||
|
"owner": "kyazdani42",
|
||||||
|
"repo": "nvim-tree.lua",
|
||||||
|
"rev": "f6ce6e59625947fc9192f3dc40c25519cf29b137",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "kyazdani42",
|
||||||
|
"ref": "1553-wrong-align-on-open-dir",
|
||||||
|
"repo": "nvim-tree.lua",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"editorconfig-nvim": "editorconfig-nvim",
|
"editorconfig-nvim": "editorconfig-nvim",
|
||||||
"lspsaga-nvim": "lspsaga-nvim",
|
"lspsaga-nvim": "lspsaga-nvim",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
|
"nvim-tree-lua": "nvim-tree-lua",
|
||||||
"tabby-nvim": "tabby-nvim",
|
"tabby-nvim": "tabby-nvim",
|
||||||
"telescope-live-grep-args-nvim": "telescope-live-grep-args-nvim",
|
"telescope-live-grep-args-nvim": "telescope-live-grep-args-nvim",
|
||||||
"utils": "utils"
|
"utils": "utils"
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||||
utils.url = "github:numtide/flake-utils";
|
utils.url = "github:numtide/flake-utils";
|
||||||
|
|
||||||
|
nvim-tree-lua = {
|
||||||
|
url = "github:kyazdani42/nvim-tree.lua/1553-wrong-align-on-open-dir";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
|
||||||
tabby-nvim = {
|
tabby-nvim = {
|
||||||
url = "github:nanozuki/tabby.nvim?rev=916c9e56d043906a441cd9f905e2ca1f5c4dddb0";
|
url = "github:nanozuki/tabby.nvim?rev=916c9e56d043906a441cd9f905e2ca1f5c4dddb0";
|
||||||
flake = false;
|
flake = false;
|
||||||
|
@ -28,6 +33,7 @@
|
||||||
utils.lib.eachDefaultSystem (system:
|
utils.lib.eachDefaultSystem (system:
|
||||||
let
|
let
|
||||||
inputPlugins = [
|
inputPlugins = [
|
||||||
|
"nvim-tree-lua"
|
||||||
"tabby-nvim"
|
"tabby-nvim"
|
||||||
"editorconfig-nvim"
|
"editorconfig-nvim"
|
||||||
"telescope-live-grep-args-nvim"
|
"telescope-live-grep-args-nvim"
|
||||||
|
|
Reference in a new issue