nvim/after/ftplugin/typescript.lua
2023-06-27 13:18:57 +02:00

5 lines
194 B
Lua

vim.keymap.set("n", "<leader>o",
function() vim.lsp.buf.execute_command({ command = "_typescript.organizeImports", arguments = { vim.fn.expand("%:p") } }) end,
{ desc = "Organize imports" }
)