mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
27 lines
461 B
Nix
27 lines
461 B
Nix
|
{ 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|