From b41e89d84075410790df4ea8d798b8528d5e3829 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Wed, 15 Jul 2026 23:54:56 +0200 Subject: [PATCH] feat: Add bullets-vim/bullets.vim plugin to work easily with lists --- lua/plugins/bullets.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lua/plugins/bullets.lua diff --git a/lua/plugins/bullets.lua b/lua/plugins/bullets.lua new file mode 100644 index 0000000..28b0a74 --- /dev/null +++ b/lua/plugins/bullets.lua @@ -0,0 +1,16 @@ +-- INFO: +-- Bllets.vim is a Vim plugin for automated bullet lists. +-- https://github.com/bullets-vim/bullets.vim +-- https://github.com/bullets-vim/bullets.vim/wiki/Configuration +-- https://github.com/bullets-vim/bullets.vim/wiki/Usage + +return { + "bullets-vim/bullets.vim", + ft = { "markdown", "yaml", "text" }, + init = function() + vim.g.bullets_enabled_file_types = { "markdown", "yaml", "text" } + vim.g.bullets_renumber_on_change = 1 + end, +} + +-- TODO: Voir aussi l'adaptation lua de ce plugin : https://github.com/kaymmm/bullets.nvim