1

Regenerate nvim config

This commit is contained in:
2024-06-02 03:29:20 +02:00
parent 75eea0c030
commit ef2e28883d
5576 changed files with 604886 additions and 503 deletions

View File

@ -0,0 +1,7 @@
fn() {
fn() {
fn() {
True
}
}
}

View File

@ -0,0 +1,4 @@
pub fn main() {
assert Ok(i) =
parse_int("123")
}

View File

@ -0,0 +1,4 @@
pub fn main() {
True &&
False
}

View File

@ -0,0 +1,10 @@
pub fn main() {
case 1 {
1 -> "One"
2 -> {
case 2 {
2 -> "Two"
}
}
}
}

View File

@ -0,0 +1,2 @@
pub const foo =
"bar"

View File

@ -0,0 +1,15 @@
import gleam/io
pub fn main() {
io.println("Hello from main!")
}
fn hidden() {
io.println("Hello from hidden!")
}
pub external fn inspect(a) -> a =
"Elixir.IO" "inspect"
external fn inspect(a) -> a =
"Elixir.IO" "inspect"

View File

@ -0,0 +1,4 @@
import foo.{
Bar,
baz,
}

View File

@ -0,0 +1,4 @@
pub fn main() {
let string =
"string"
}

View File

@ -0,0 +1,11 @@
pub fn main() {
[
a,
..[
b,
..[
c,
]
]
]
}

View File

@ -0,0 +1,4 @@
pub fn main() {
one()
|> two()
}

View File

@ -0,0 +1,5 @@
pub fn main() {
todo(
"Foo"
)
}

View File

@ -0,0 +1,11 @@
pub fn main() {
#(
a,
#(
b,
#(
c
)
)
)
}

View File

@ -0,0 +1,18 @@
pub type Cat {
Cat(name: String, cuteness: Int)
}
type User {
LoggedIn(name: String)
Guest
}
pub opaque type Counter {
Counter(value: Int)
}
pub type Headers =
List(#(String, String))
type Headers =
List(#(String, String))