Moved to cord.nvim for discord

This commit is contained in:
2025-04-28 13:21:50 +02:00
parent 833a548397
commit 43e452b649
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
---@diagnostic disable: missing-fields
return {
"vyfor/cord.nvim",
build = ":Cord update",
config = function()
require("cord").setup({
enabled = true,
editor = {
tooltip = "The One True Text Editor",
},
display = {
theme = "catppuccin",
flavor = "dark",
},
buttons = {
{
label = "Neovim",
url = "https://neovim.io",
},
{
label = function(opts)
return opts.workspace
end,
url = function(opts)
return opts.repo_url
end,
},
},
})
end,
}

View File

@@ -1,6 +1,7 @@
--- @type LazyPluginSpec
return {
"IogaMaster/neocord",
enabled = false,
config = function()
local neocord = require("neocord")