Format workspace with CodeFormat

This commit is contained in:
2023-09-02 17:29:59 +02:00
parent 214ffd053d
commit ae3bc212a9
63 changed files with 1205 additions and 1061 deletions
+3 -3
View File
@@ -14,7 +14,7 @@
limitations under the License.
]]
local files = { 'globals', 'options', 'autocommands', 'mappings' }
local files = { "globals", "options", "autocommands", "mappings", }
for _, file in ipairs(files) do
local pkg = "core." .. file
@@ -29,14 +29,14 @@ end
if vim.g.vscode then
-- VSCode extension
else
local ok, err = pcall(require, 'bootstrap')
local ok, err = pcall(require, "bootstrap")
if not ok then
print("Error during bootstrap")
print(err:gsub("\t", " "))
return
end
ok, err = pcall(require, 'plugins')
ok, err = pcall(require, "plugins")
if not ok then
print("Error while loading plugins")
print(err:gsub("\t", " "))