dot dot dotfiles

fix telescope install in nvim config

+4 -1
+2
.config/nvim/lua/config/lazy.lua
··· 19 19 -- add LazyVim and import its plugins 20 20 { "LazyVim/LazyVim", import = "lazyvim.plugins" }, 21 21 -- import/override with your plugins 22 + { "nvim-lua/plenary.nvim" }, 23 + { "nvim-telescope/telescope.nvim", tag = '0.1.8' }, 22 24 { import = "plugins" }, 23 25 }, 24 26 defaults = {
+2 -1
.config/nvim/lua/plugins/plugins.lua
··· 26 26 27 27 -- change some telescope options and a keymap to browse plugin files 28 28 { 29 - "nvim-telescope/telescope.nvim", 29 + "nvim-lua/plenary.nvim", 30 + "nvim-telescope/telescope.nvim", tag = '0.1.8', 30 31 keys = { 31 32 -- add a keymap to browse plugin files 32 33 -- stylua: ignore