fix(config): new config, it's been a while

This commit is contained in:
devaine 2025-10-26 19:41:13 -05:00
commit 1fe92c532b
Signed by: devaine
GPG key ID: 954B1DCAC6FF84EE
11 changed files with 385 additions and 0 deletions

16
lua/plugins/discord.lua Normal file
View file

@ -0,0 +1,16 @@
-- Just Discord Rich Presence for Neovim, neat huh?
return {
"vyfor/cord.nvim",
build = ":Cord update",
config = function()
require("cord").setup({
display = {
flavor = "dark",
},
text = {
default = "programming most likely",
workspace = "",
},
})
end,
}