From e5f9fb998a54c0ec1c2d25de88a3c260c494ffe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristof=20L=C3=BCnenschlo=C3=9F?= Date: Sat, 28 Dec 2024 19:56:48 +0100 Subject: [PATCH] docs: fix syntax in examples for installation (#208) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 97ee51dc..125d48c2 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ https://github.com/Bekaboo/dropbar.nvim/assets/76579810/e8c1ac26-0321-4762-9975- dependencies = { 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' - } + }, config = function() local dropbar_api = require('dropbar.api') vim.keymap.set('n', ';', dropbar_api.pick, { desc = 'Pick symbols in winbar' }) @@ -171,7 +171,7 @@ https://github.com/Bekaboo/dropbar.nvim/assets/76579810/e8c1ac26-0321-4762-9975- requires = { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' - } + }, config = function () local dropbar_api = require('dropbar.api') vim.keymap.set('n', ';', dropbar_api.pick, { desc = 'Pick symbols in winbar' })