Default config reformat (#951)

This commit is contained in:
Abouzar Parvan 2021-07-15 05:44:25 +04:30 committed by GitHub
parent 7f11162bd8
commit f95e150518
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 233 additions and 313 deletions

View file

@ -1,8 +1,15 @@
local M = {}
M.config = function()
-- TODO: implement config for language
return "No config available!"
O.lang.java = {
java_tools = {
active = false,
},
formatter = {
exe = "prettier",
args = { "--stdin-filepath", vim.api.nvim_buf_get_name(0), "--single-quote" },
},
}
end
M.format = function()