plugins/explorer: bump nvim-tree and telescope plugins

This commit is contained in:
Dmitriy Pleshevskiy 2023-01-08 15:53:19 +03:00
parent 020520b007
commit 6942284275
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
3 changed files with 16 additions and 15 deletions

View File

@ -287,17 +287,17 @@
"nvim-tree-lua": {
"flake": false,
"locked": {
"lastModified": 1670730038,
"narHash": "sha256-OztYz31WMcjuCNJ/3UdnyzWVUGomh5DJqZMG2IzfGMA=",
"lastModified": 1673160181,
"narHash": "sha256-61u31BqgVEbeBeVWP6wb8ZFYgCmpUp78HCO4KZktrZg=",
"owner": "kyazdani42",
"repo": "nvim-tree.lua",
"rev": "7177d95ac0f46bf02ff3f8375e135149a3fc79b8",
"rev": "ccb6d8a518d32e22bf5874f90e6c22661a5d8b46",
"type": "github"
},
"original": {
"owner": "kyazdani42",
"repo": "nvim-tree.lua",
"rev": "7177d95ac0f46bf02ff3f8375e135149a3fc79b8",
"rev": "ccb6d8a518d32e22bf5874f90e6c22661a5d8b46",
"type": "github"
}
},
@ -399,34 +399,34 @@
"telescope-live-grep-args-nvim": {
"flake": false,
"locked": {
"lastModified": 1661594012,
"narHash": "sha256-T5j2qgoDtVkk1uCLjoNeyw4eTu6eLbTXQHUuvHs3Tls=",
"lastModified": 1667841908,
"narHash": "sha256-RgGCaAolEWMXJet547ce0oW0+zsxQzXrKn+O9WgV1nk=",
"owner": "nvim-telescope",
"repo": "telescope-live-grep-args.nvim",
"rev": "32b633b062d1168a2d18ad27994e5b4ef97f0a74",
"rev": "7de3baef1ec4fb77f7a8195fe87bebd513244b6a",
"type": "github"
},
"original": {
"owner": "nvim-telescope",
"repo": "telescope-live-grep-args.nvim",
"rev": "32b633b062d1168a2d18ad27994e5b4ef97f0a74",
"rev": "7de3baef1ec4fb77f7a8195fe87bebd513244b6a",
"type": "github"
}
},
"telescope-nvim": {
"flake": false,
"locked": {
"lastModified": 1665298896,
"narHash": "sha256-XSvHYRJ19E8IvYqLbk/NHBpaSajmMMk7sKoXkfM2KsM=",
"lastModified": 1673080271,
"narHash": "sha256-O+SdBNGBDolhucmegcjR9Uf8/7L8+GOAKm0SzwSZqZo=",
"owner": "nvim-telescope",
"repo": "telescope.nvim",
"rev": "f174a0367b4fc7cb17710d867e25ea792311c418",
"rev": "04af51dbfb17c2afa0b8d82b0e842e0638201ca9",
"type": "github"
},
"original": {
"owner": "nvim-telescope",
"repo": "telescope.nvim",
"rev": "f174a0367b4fc7cb17710d867e25ea792311c418",
"rev": "04af51dbfb17c2afa0b8d82b0e842e0638201ca9",
"type": "github"
}
},

View File

@ -23,19 +23,19 @@
# https://github.com/kyazdani42/nvim-tree.lua
nvim-tree-lua = {
url = "github:kyazdani42/nvim-tree.lua?rev=7177d95ac0f46bf02ff3f8375e135149a3fc79b8";
url = "github:kyazdani42/nvim-tree.lua?rev=ccb6d8a518d32e22bf5874f90e6c22661a5d8b46";
flake = false;
};
# https://github.com/nvim-telescope/telescope.nvim
telescope-nvim = {
url = "github:nvim-telescope/telescope.nvim?rev=f174a0367b4fc7cb17710d867e25ea792311c418";
url = "github:nvim-telescope/telescope.nvim?rev=04af51dbfb17c2afa0b8d82b0e842e0638201ca9";
flake = false;
};
# https://github.com/nvim-telescope/telescope-live-grep-args.nvim
telescope-live-grep-args-nvim = {
url = "github:nvim-telescope/telescope-live-grep-args.nvim?rev=32b633b062d1168a2d18ad27994e5b4ef97f0a74";
url = "github:nvim-telescope/telescope-live-grep-args.nvim?rev=7de3baef1ec4fb77f7a8195fe87bebd513244b6a";
flake = false;
};

View File

@ -2,6 +2,7 @@
local telescope = require("telescope")
telescope.setup(@telescopeSettings@)
telescope.load_extension("live_grep_args")
vim.keymap.set("n", "<leader>ff", "<Cmd>Telescope find_files hidden=true<CR>")
vim.keymap.set("n", "<leader>fb", "<Cmd>Telescope buffers<CR>")