Skip to content

Instantly share code, notes, and snippets.

View merciremi's full-sized avatar

Rémi Mercier merciremi

View GitHub Profile
@merciremi
merciremi / settings.json
Created April 1, 2025 13:46
my zed LSPs settings
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette
{
"languages": {
a = ["Rose", "Dona", "Martha", "Amelia"]
def array_to_hash(array)
names = {}
if block_given?
array.each_with_index { |name, index| names[yield(index)] = name }
# array.each_with_index do |name, index|
# names[yield(index)] = name
# end
else