lazyvim-starter

My configuration changes to https://github.com/LazyVim/starter
git clone https://git.eamoncaddigan.net/lazyvim-starter.git
Log | Files | Refs | README | LICENSE

commit 01a27d15c4c66f0d8626f06d295a05a9a86a1d2f
parent 2d99662e1a3945f45d35e0fd323f7b8e2b338887
Author: Folke Lemaitre <folke.lemaitre@gmail.com>
Date:   Tue, 24 Jan 2023 14:50:26 +0100

refactor: simplified fzf native example

Diffstat:
Mlua/plugins/example.lua | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/lua/plugins/example.lua b/lua/plugins/example.lua @@ -74,14 +74,14 @@ return { -- add telescope-fzf-native { - "nvim-telescope/telescope.nvim", - dependencies = { { "nvim-telescope/telescope-fzf-native.nvim", build = "make" } }, - -- apply the config and additionally load fzf-native - config = function(_, opts) - local telescope = require("telescope") - telescope.setup(opts) - telescope.load_extension("fzf") - end, + "telescope.nvim", + dependencies = { + "nvim-telescope/telescope-fzf-native.nvim", + build = "make", + config = function() + require("telescope").load_extension("fzf") + end, + }, }, -- add pyright to lspconfig