mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
27 lines
513 B
Nix
27 lines
513 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
imagemagick
|
|
tree-sitter
|
|
ghostscript
|
|
tectonic
|
|
mermaid-cli
|
|
];
|
|
programs.nvf.settings.vim.utility.snacks-nvim = {
|
|
enable = true;
|
|
setupOpts = {
|
|
image = {
|
|
enabled = true;
|
|
doc = {
|
|
inline = false;
|
|
float = true;
|
|
};
|
|
};
|
|
quickfile.enabled = true;
|
|
statuscolumn.enabled = true;
|
|
zen.enabled = true;
|
|
bufdelete.enabled = true;
|
|
gitsigns.enabled = true;
|
|
};
|
|
};
|
|
}
|