neovim-flake/homeManagerModule/plugins/misc.nix

23 lines
479 B
Nix
Raw Permalink Normal View History

# Misc stuff
{
programs.nixvim.plugins = {
2024-08-24 23:06:12 -07:00
# Extra (stuff that doesn't affect editing)
wakatime.enable = true;
presence-nvim = {
enable = true;
editingText = "Hacking %s";
workspaceText = "The One True Text Editor";
buttons = [
{
label = "GitHub";
url = "https://github.com/youwen5";
}
{
label = "Code Forge";
url = "https://code.youwen.dev/";
}
];
};
};
}