mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
01f5b9aaba
Spacevim is a fully loaded vim/neovim installation in the spirit of https://www.spacemacs.org/ It's configured with a TOML file rather than vimscript and includes a wide array of configuration found at https://spacevim.org/ Update pkgs/applications/editors/spacevim/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Update pkgs/applications/editors/spacevim/init.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Update pkgs/applications/editors/spacevim/default.nix Co-authored-by: risson <18313093+rissson@users.noreply.github.com>
47 lines
1.1 KiB
Nix
47 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;
|
|
};
|
|
}
|