mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-01 08:34:41 +02:00
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:
parent
d718446b61
commit
a32d2e6df0
17 changed files with 309 additions and 320 deletions
|
@ -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.
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue