Interpret header files as C, not C++.
parent
fb5932254b
commit
f48fc258ca
|
@ -20,6 +20,12 @@ in
|
||||||
|
|
||||||
nvim-lspconfig = ''
|
nvim-lspconfig = ''
|
||||||
require('init.c').nvim_lspconfig()
|
require('init.c').nvim_lspconfig()
|
||||||
|
|
||||||
|
vim.filetype.add({
|
||||||
|
pattern = {
|
||||||
|
['.*%.h'] = 'c',
|
||||||
|
},
|
||||||
|
})
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue