fix(filetype): don't register c-sharp

Language names can only contain hyphens, and dashes are normalized by
Nvim itself now.
This commit is contained in:
Christian Clason 2026-03-07 11:09:03 +01:00 committed by Christian Clason
parent 4110daee15
commit 5cb05e1b0f

View file

@ -2,7 +2,7 @@ local filetypes = {
angular = { 'htmlangular' }, angular = { 'htmlangular' },
bash = { 'sh' }, bash = { 'sh' },
bibtex = { 'bib' }, bibtex = { 'bib' },
c_sharp = { 'cs', 'csharp', 'c-sharp' }, c_sharp = { 'cs', 'csharp' },
commonlisp = { 'lisp' }, commonlisp = { 'lisp' },
cooklang = { 'cook' }, cooklang = { 'cook' },
devicetree = { 'dts' }, devicetree = { 'dts' },