Iron-E / nvim-libmodal

Create new "modes" for Neovim!
Other
118 stars 7 forks source link

Bad styling #15

Closed anuvyklack closed 2 years ago

anuvyklack commented 2 years ago

In every Lua style guide this one:

local foo =
{
    bar = 2,
}

considered as a bad stlyle, and this one:

local foo = {
    bar = 2,
}

as a good one:

Iron-E commented 2 years ago

I prefer newlines for every opening brace, as it helps clarify scope.