cord-nvim 2.0.0-beta.34

🚀 The most extensible Discord Rich Presence plugin for Neovim, powered by Rust.
1
2
3
4
5
6
7
8
9
10
local M

M = {
  ---@param opts? CordConfig Configuration options for Cord
  setup = function(opts)
    if opts then M.user_config = opts end
  end,
}

return M