From 833b472714f75e316e71bc5ae71e10481525d4f0 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Thu, 10 Oct 2024 13:52:42 -0700 Subject: [PATCH] feat: add neocord rich presence --- flake.nix | 1 + lua/plugins/lz-spec.lua | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/flake.nix b/flake.nix index 3f879c6..e93f3ba 100644 --- a/flake.nix +++ b/flake.nix @@ -167,6 +167,7 @@ barbecue-nvim undotree conform-nvim + neocord ]; }; diff --git a/lua/plugins/lz-spec.lua b/lua/plugins/lz-spec.lua index 5e7287f..5b14c00 100644 --- a/lua/plugins/lz-spec.lua +++ b/lua/plugins/lz-spec.lua @@ -216,4 +216,16 @@ return { }, }, }, + { + "neocord", + event = "BufEnter", + after = function() + require("neocord").setup({ + editing_text = "Hacking %s", + logo_tooltip = "The One True Text Editor", + terminal_text = "Bypassing the mainframe", + workspace_text = "The One True Text Editor", + }) + end, + }, }