Files
neovim-config/after/plugin/nvimcord.lua
2023-06-17 20:45:39 +02:00

19 lines
539 B
Lua

require('nvimcord').setup {
-- Start the RPC manually (boolean)
autostart = false,
-- Set the client ID (string)
client_id = '954365489214291979',
-- Use the filetype as the large icon (boolean)
large_file_icon = true,
-- Set the log level (enum)
log_level = vim.log.levels.DEBUG,
-- Get the workspace name (function|string)
workspace_name = function()
return --[[cwd basename]]
end,
-- Get the workspace URL (function|string)
workspace_url = function()
return ''
end,
}