mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
This commit adds a `plugins.<name>.luaConfig` section controlling the plugin specific configuration. The section contains the internal `init` option, containing the plugin's initialization code. It also contains the public `pre` and `post` options, that allow to add code before & after the `init` section Finally, it contains the `final` option, being the concatenation of the three previous options.
40 lines
1.4 KiB
Nix
40 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib.nixvim) defaultNullOpts toLuaObject;
|
|
in
|
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
|
name = "vscode";
|
|
isColorscheme = true;
|
|
originalName = "vscode-nvim";
|
|
package = "vscode-nvim";
|
|
colorscheme = null; # Color scheme is set by `require.("vscode").load()`
|
|
callSetup = false;
|
|
|
|
maintainers = [ lib.maintainers.loicreynier ];
|
|
|
|
settingsOptions = {
|
|
transparent = defaultNullOpts.mkBool false "Whether to enable transparent background";
|
|
italic_comments = defaultNullOpts.mkBool false "Whether to enable italic comments";
|
|
underline_links = defaultNullOpts.mkBool false "Whether to underline links";
|
|
disable_nvimtree_bg = defaultNullOpts.mkBool true "Whether to disable nvim-tree background";
|
|
color_overrides = defaultNullOpts.mkAttrsOf lib.types.str { } ''
|
|
A dictionary of color overrides.
|
|
See https://github.com/Mofiqul/vscode.nvim/blob/main/lua/vscode/colors.lua for color names.
|
|
'';
|
|
group_overrides = defaultNullOpts.mkAttrsOf lib.types.highlight { } ''
|
|
A dictionary of group names, each associated with a dictionary of parameters
|
|
(`bg`, `fg`, `sp` and `style`) and colors in hex.
|
|
'';
|
|
};
|
|
|
|
extraConfig = cfg: {
|
|
colorschemes.vscode.luaConfig.content = ''
|
|
local _vscode = require("vscode")
|
|
_vscode.setup(${toLuaObject cfg.settings})
|
|
_vscode.load()
|
|
'';
|
|
};
|
|
}
|