mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
113 lines
2.4 KiB
Nix
113 lines
2.4 KiB
Nix
{
|
|
empty = {
|
|
# This test is flaky and fails non-deterministically
|
|
test.runNvim = false;
|
|
|
|
plugins.web-devicons.enable = true;
|
|
plugins.octo.enable = true;
|
|
};
|
|
|
|
example = {
|
|
# This test is flaky and fails non-deterministically
|
|
test.runNvim = false;
|
|
|
|
plugins.web-devicons.enable = true;
|
|
plugins.octo = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
ssh_aliases = {
|
|
"github.com-work" = "github.com";
|
|
};
|
|
mappings_disable_default = true;
|
|
mappings = {
|
|
issue.react_heart = "<leader>rh";
|
|
file_panel.select_prev_entry = "[q";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
withFzfLuaPicker = {
|
|
# This test is flaky and fails non-deterministically
|
|
test.runNvim = false;
|
|
|
|
plugins.web-devicons.enable = true;
|
|
plugins.octo = {
|
|
enable = true;
|
|
settings.picker = "fzf-lua";
|
|
};
|
|
};
|
|
|
|
withSnacksPicker = {
|
|
# This test is flaky and fails non-deterministically
|
|
test.runNvim = false;
|
|
|
|
plugins.web-devicons.enable = true;
|
|
plugins.octo = {
|
|
enable = true;
|
|
settings.picker = "snacks";
|
|
};
|
|
};
|
|
|
|
defaults = {
|
|
# This test is flaky and fails non-deterministically
|
|
test.runNvim = false;
|
|
|
|
plugins.web-devicons.enable = true;
|
|
plugins.octo = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
use_local_fs = false;
|
|
enable_builtin = false;
|
|
reaction_viewer_hint_icon = "";
|
|
user_icon = " ";
|
|
timeline_marker = "";
|
|
timeline_indent = "2";
|
|
right_bubble_delimiter = "";
|
|
left_bubble_delimiter = "";
|
|
github_hostname = "";
|
|
snippet_context_lines = 4;
|
|
timeout = 5000;
|
|
ui.use_sign_column = true;
|
|
picker = "telescope";
|
|
|
|
default_remote = [
|
|
"upstream"
|
|
"origin"
|
|
];
|
|
|
|
gh_env = { };
|
|
ssh_aliases = { };
|
|
|
|
picker_config = {
|
|
use_emojis = false;
|
|
|
|
mappings = {
|
|
open_in_browser.lhs = "<C-b>";
|
|
copy_url.lhs = "<C-y>";
|
|
checkout_pr.lhs = "<C-o>";
|
|
merge_pr.lhs = "<C-r>";
|
|
};
|
|
};
|
|
|
|
issues.order_by = {
|
|
field = "CREATED_AT";
|
|
direction = "DESC";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
no-packages = {
|
|
# Need to add gh executable to runtime path for plugin
|
|
test.runNvim = false;
|
|
|
|
plugins = {
|
|
web-devicons.enable = false;
|
|
octo.enable = true;
|
|
};
|
|
dependencies.gh.enable = false;
|
|
};
|
|
}
|