mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
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:
parent
48e9af500c
commit
34b61f9b5b
12 changed files with 64 additions and 0 deletions
5
tests/test-sources/plugins/by-name/autoclose/default.nix
Normal file
5
tests/test-sources/plugins/by-name/autoclose/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.autoclose.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.commentary.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.easyescape.enable = true;
|
||||||
|
};
|
||||||
|
}
|
5
tests/test-sources/plugins/by-name/floaterm/default.nix
Normal file
5
tests/test-sources/plugins/by-name/floaterm/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.floaterm.enable = true;
|
||||||
|
};
|
||||||
|
}
|
5
tests/test-sources/plugins/by-name/fugitive/default.nix
Normal file
5
tests/test-sources/plugins/by-name/fugitive/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.fugitive.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.gitmessenger.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.intellitab.enable = false;
|
||||||
|
};
|
||||||
|
}
|
5
tests/test-sources/plugins/by-name/nvim-bqf/default.nix
Normal file
5
tests/test-sources/plugins/by-name/nvim-bqf/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.nvim-bqf.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.nvim-colorizer.enable = true;
|
||||||
|
};
|
||||||
|
}
|
5
tests/test-sources/plugins/by-name/surround/default.nix
Normal file
5
tests/test-sources/plugins/by-name/surround/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.surround.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins = {
|
||||||
|
treesitter-refactor.enable = true;
|
||||||
|
# Also needs treesitter, to avoid warnings
|
||||||
|
treesitter.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
empty = {
|
||||||
|
plugins.vim-matchup.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue