add <leader>rf mapping for formatting

This commit is contained in:
2022-04-07 21:54:16 +03:00
parent c082dffbcc
commit 8f35f45d58

View File

@@ -114,3 +114,6 @@ end)
vim.keymap.set("n", "<leader>ri", function()
u.lsp_organize_imports()
end)
vim.keymap.set("n", "<leader>rf", function()
vim.lsp.buf.formatting_sync()
end)