plugins/by-name: add missing test files

- Added "empty" test for:
  - autoclose
  - commentary
  - easyescape
  - floaterm
  - fugitive
  - gitmessenger
  - intellitab
  - nvim-bqf
  - nvim-colorizer
  - surround
  - treesitter-refactor
  - vim-matchup
This commit is contained in:
Matt Sturgeon 2024-09-06 22:22:34 +01:00
parent 48e9af500c
commit 34b61f9b5b
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
12 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.autoclose.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.commentary.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.easyescape.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.floaterm.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.fugitive.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.gitmessenger.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.intellitab.enable = false;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.nvim-bqf.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.nvim-colorizer.enable = true;
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.surround.enable = true;
};
}

View file

@ -0,0 +1,9 @@
{
empty = {
plugins = {
treesitter-refactor.enable = true;
# Also needs treesitter, to avoid warnings
treesitter.enable = true;
};
};
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.vim-matchup.enable = true;
};
}