Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Feel-ix-343 committed May 20, 2024
1 parent b4524f2 commit 7483e36
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lua/lspconfig/server_configurations/markdown_oxide.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ Check the readme to see how to properly setup.
commands = {
Today = {
function()
vim.lsp.buf.execute_command({command="jump", arguments={"today"}})
vim.lsp.buf.execute_command { command = 'jump', arguments = { 'today' } }
end,
description = "Open today's daily note"
description = "Open today's daily note",
},
Tomorrow = {
function()
vim.lsp.buf.execute_command({command="jump", arguments={"tomorrow"}})
vim.lsp.buf.execute_command { command = 'jump', arguments = { 'tomorrow' } }
end,
description = "Open tomorrow's daily note"
description = "Open tomorrow's daily note",
},
Yesterday = {
function()
vim.lsp.buf.execute_command({command="jump", arguments={"yesterday"}})
vim.lsp.buf.execute_command { command = 'jump', arguments = { 'yesterday' } }
end,
description = "Open yesterday's daily note"
description = "Open yesterday's daily note",
},
}
}

0 comments on commit 7483e36

Please sign in to comment.