Updating all files to use stylua

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-08-31 12:14:37 +02:00
parent 4e07e36ca7
commit 2eaafbc10e
27 changed files with 788 additions and 737 deletions

View File

@@ -1,17 +1,17 @@
local setup, nvimcord = pcall(require, 'nvimcord')
local setup, nvimcord = pcall(require, "nvimcord")
if not setup then
return
end
nvimcord.setup {
nvimcord.setup({
autostart = false,
client_id = '954365489214291979',
client_id = "954365489214291979",
large_file_icon = false,
log_level = vim.log.levels.DEBUG,
workspace_name = function()
return vim.cmd [[pwd]]
return vim.cmd([[pwd]])
end,
workspace_url = function()
return ''
return ""
end,
}
})