nvim/lua/core/plugins/discord.lua

19 lines
338 B
Lua

-- Homepage: https://github.com/vyfor/cord.nvim
-- What is it?
-- Just 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
}