Update
This commit is contained in:
parent
7f5e4a8e6d
commit
7904e497bd
@ -17,6 +17,7 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
|||||||
- [ ] Keymaps:
|
- [ ] Keymaps:
|
||||||
- Trouble
|
- Trouble
|
||||||
- Tagbar (actually not working)
|
- Tagbar (actually not working)
|
||||||
|
- Markdown
|
||||||
|
|
||||||
- [ ] Change my keyboard backlight
|
- [ ] Change my keyboard backlight
|
||||||
- Issue on nixos-hardware ig
|
- Issue on nixos-hardware ig
|
||||||
|
17
flake.lock
17
flake.lock
@ -717,6 +717,22 @@
|
|||||||
"url": "https://devimages-cdn.apple.com/design/resources/download/NY.dmg"
|
"url": "https://devimages-cdn.apple.com/design/resources/download/NY.dmg"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"plugin-markdown": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1725904000,
|
||||||
|
"narHash": "sha256-mbqX0+yGMjW3fHtDXVnVh6nUOG6waCW/sAXSQugc33Y=",
|
||||||
|
"owner": "MeanderingProgrammer",
|
||||||
|
"repo": "markdown.nvim",
|
||||||
|
"rev": "a5e2d0b1215814c3d033be1fd8eccf59ce366399",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "MeanderingProgrammer",
|
||||||
|
"repo": "markdown.nvim",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"anotherhadi-portfolio": "anotherhadi-portfolio",
|
"anotherhadi-portfolio": "anotherhadi-portfolio",
|
||||||
@ -728,6 +744,7 @@
|
|||||||
"nixos-hardware": "nixos-hardware",
|
"nixos-hardware": "nixos-hardware",
|
||||||
"nixpkgs": "nixpkgs_6",
|
"nixpkgs": "nixpkgs_6",
|
||||||
"nixvim": "nixvim",
|
"nixvim": "nixvim",
|
||||||
|
"plugin-markdown": "plugin-markdown",
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
"spicetify-nix": "spicetify-nix"
|
"spicetify-nix": "spicetify-nix"
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,10 @@
|
|||||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
hyprpanel.url = "github:Jas-SinghFSU/HyprPanel";
|
hyprpanel.url = "github:Jas-SinghFSU/HyprPanel";
|
||||||
anotherhadi-portfolio.url = "github:anotherhadi/portfolio";
|
anotherhadi-portfolio.url = "github:anotherhadi/portfolio";
|
||||||
|
plugin-markdown = {
|
||||||
|
url = "github:MeanderingProgrammer/markdown.nvim";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ nixpkgs, ... }: {
|
outputs = inputs@{ nixpkgs, ... }: {
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
{
|
{ pkgs, inputs, ... }: {
|
||||||
programs.nixvim.plugins = {
|
programs.nixvim = {
|
||||||
|
extraPlugins = [
|
||||||
|
(pkgs.vimUtils.buildVimPlugin {
|
||||||
|
name = "markdown.nvim";
|
||||||
|
src = inputs.plugin-markdown;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
extraConfigLua = "require('render-markdown').setup({})";
|
||||||
|
plugins = {
|
||||||
mkdnflow = {
|
mkdnflow = {
|
||||||
enable = true;
|
enable = true;
|
||||||
mappings = {
|
mappings = {
|
||||||
@ -130,4 +138,5 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -19,18 +19,6 @@
|
|||||||
trouble.enable = true;
|
trouble.enable = true;
|
||||||
indent-blankline.enable = true;
|
indent-blankline.enable = true;
|
||||||
which-key.enable = true;
|
which-key.enable = true;
|
||||||
headlines = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
markdown = {
|
|
||||||
headline_highlights = [ "Headline1" "Headline" ];
|
|
||||||
fat_headlines = false;
|
|
||||||
bullets = [ "" "◉" "○" "✸" ];
|
|
||||||
dash_string = "";
|
|
||||||
codeblock_highlight = "Headline";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
nvim-colorizer.enable = true;
|
nvim-colorizer.enable = true;
|
||||||
tagbar.enable = true; # FIXME: Tagbar is not working
|
tagbar.enable = true; # FIXME: Tagbar is not working
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user