plugins: cleanup lib usage in several plugins

- ccc
- cmake-tools
- baleia
- auto-save
- vim-css-color
- virt-column
- bacon
- coq-nvim
- dressing
- competitest
- direnv
- committia
- indent-o-matic
- guess-indent
- lsp-status
- octo
- lazygit
This commit is contained in:
Matt Sturgeon 2024-09-27 05:39:06 +01:00
parent d718446b61
commit a32d2e6df0
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
17 changed files with 309 additions and 320 deletions

View file

@ -1,20 +1,16 @@
{
lib,
helpers,
...
}:
helpers.neovim-plugin.mkNeovimPlugin {
{ lib, ... }:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "bacon";
package = "nvim-bacon";
maintainers = [ lib.maintainers.alisonjenkins ];
settingsOptions = {
quickfix = {
enabled = helpers.defaultNullOpts.mkBool true ''
enabled = lib.nixvim.defaultNullOpts.mkBool true ''
Whether to populate the quickfix list with bacon errors and warnings.
'';
event_trigger = helpers.defaultNullOpts.mkBool true ''
event_trigger = lib.nixvim.defaultNullOpts.mkBool true ''
Triggers the `QuickFixCmdPost` event after populating the quickfix list.
'';
};