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; nixvimInjections = true;
}; };
}; };
# filetype.extension = { files = {
# ".md" = '' "ftplugin/nix.lua" = {
# vim.bo.spell = true options = {
# ''; expandtab = true;
# }; shiftwidth = 2;
tabstop = 2;
};
};
"ftplugin/markdown.lua" = {
options = {
spell = true;
};
};
};
}; };
} }