mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
14 lines
128 B
Nix
14 lines
128 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; {
|
|
config = {
|
|
vim.markdown = {
|
|
enable = mkDefault false;
|
|
};
|
|
};
|
|
}
|