Files
nixy/home/programs/nvim/plugins/markdown.nix
Hadi 444340c880 I'm trying things
Former-commit-id: f24415e320
2025-03-18 21:52:12 +01:00

31 lines
566 B
Nix

{ config, ... }:
let
accent = "#${config.lib.stylix.colors.base0D}";
muted = "#${config.lib.stylix.colors.base03}";
in {
programs.nixvim = {
extraFiles."after/ftplugin/markdown.lua".text = ''
vim.bo.tabstop = 2
vim.bo.shiftwidth = 2
vim.bo.expandtab = true
'';
# Plugins
plugins = {
# Render UI elements
render-markdown = {
enable = true;
settings = { completions.lsp.enabled = true; };
};
mkdnflow = {
enable = true;
mappings = {
};
};
};
};
}