neovim filetype options

This commit is contained in:
Aria Nolan 2024-02-24 11:55:49 -05:00
parent 0a41229092
commit 8d436b570e

View file

@ -41,10 +41,19 @@
nixvimInjections = true;
};
};
# filetype.extension = {
# ".md" = ''
# vim.bo.spell = true
# '';
# };
files = {
"ftplugin/nix.lua" = {
options = {
expandtab = true;
shiftwidth = 2;
tabstop = 2;
};
};
"ftplugin/markdown.lua" = {
options = {
spell = true;
};
};
};
};
}