Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
# The Nix expression is a 1:1 mapping of the spacevim toml config which you can find on their website: spacevim.org/quick-start-guide/#configuration
|
|
|
|
{
|
|
custom_plugins = [
|
|
{
|
|
merged = false;
|
|
name = "lilydjwg/colorizer";
|
|
}
|
|
];
|
|
layers = [
|
|
{ name = "default"; }
|
|
{
|
|
enable = true;
|
|
name = "colorscheme";
|
|
}
|
|
{ name = "fzf"; }
|
|
{
|
|
default_height = 30;
|
|
default_position = "top";
|
|
name = "shell";
|
|
}
|
|
{ name = "edit"; }
|
|
{ name = "VersionControl"; }
|
|
{ name = "git"; }
|
|
{
|
|
auto-completion-return-key-behavior = "complete";
|
|
auto-completion-tab-key-behavior = "cycle";
|
|
autocomplete_method = "coc";
|
|
name = "autocomplete";
|
|
}
|
|
{ name = "lang#ruby"; }
|
|
{ name = "lang#nix"; }
|
|
{ name = "lang#java"; }
|
|
{ name = "lang#kotlin"; }
|
|
{ name = "lang#sh"; }
|
|
{ name = "lang#html"; }
|
|
];
|
|
options = {
|
|
buffer_index_type = 4;
|
|
colorscheme = "gruvbox";
|
|
colorscheme_bg = "dark";
|
|
enable_guicolors = true;
|
|
enable_statusline_mode = true;
|
|
enable_tabline_filetype_icon = true;
|
|
statusline_separator = "fire";
|
|
timeoutlen = 500;
|
|
};
|
|
}
|