fix: typo in first line match for file type python

This commit is contained in:
CJ van den Berg 2024-10-16 11:31:57 +02:00
parent 9cc2613818
commit cf5f85245e
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -302,7 +302,7 @@ pub const python = .{
.icon = "󰌠", .icon = "󰌠",
.extensions = .{"py"}, .extensions = .{"py"},
.comment = "#", .comment = "#",
.first_line_matches = .{ .prefix = "#!", .content = "/bin/bash" }, .first_line_matches = .{ .prefix = "#!", .content = "python" },
.language_server = .{"pylsp"}, .language_server = .{"pylsp"},
}; };