nix-community.nixvim/tests/test-sources/plugins/by-name/glow/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
629 B
Nix
Raw Normal View History

2024-07-07 16:56:24 -04:00
{ pkgs, ... }:
{
empty = {
plugins.glow.enable = true;
};
defaults = {
plugins.glow = {
enable = true;
glowPackage = pkgs.glow;
settings = {
glow_path.__raw = "vim.fn.exepath('glow')";
install_path = "~/.local/bin";
border = "shadow";
style = "dark";
pager = false;
width = 80;
height = 100;
width_ratio = 0.7;
height_ratio = 0.7;
};
};
};
2024-09-15 16:09:02 -05:00
example = {
plugins.glow = {
enable = true;
settings = {
border = "single";
style = "/path/to/catppuccin.json";
};
};
};
2024-07-07 16:56:24 -04:00
}