From e3f4493865e475b80bf3ce6052aedca70a832736 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Mon, 29 Jul 2024 19:34:43 +0200 Subject: [PATCH] Update --- docs/TODO.md | 1 + home/programs/nvim/plugins/ui.nix | 10 +++++++++- home/programs/nvim/plugins/utils.nix | 5 ++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/TODO.md b/docs/TODO.md index 5773e56..71459fa 100644 --- a/docs/TODO.md +++ b/docs/TODO.md @@ -28,6 +28,7 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md)) - [ ] Keymaps: - Trouble - Tagbar + - [ ] Disable background color for headlines.nvim for titles - [ ] Backup system for some folders ($home/dev, $home/pictures, ...) - [ ] Exclude file pattern (nodes modules, ...) diff --git a/home/programs/nvim/plugins/ui.nix b/home/programs/nvim/plugins/ui.nix index 7e39c31..fba88c6 100644 --- a/home/programs/nvim/plugins/ui.nix +++ b/home/programs/nvim/plugins/ui.nix @@ -11,7 +11,15 @@ bufferline.enable = true; trouble.enable = true; which-key.enable = true; - # headlines.enable = true; + headlines = { + enable = true; + settings = { + markdown = { + codeblock_highlight = false; + }; + }; + }; + nvim-colorizer.enable = true; # tagbar.enable = true; }; keymaps = [{ diff --git a/home/programs/nvim/plugins/utils.nix b/home/programs/nvim/plugins/utils.nix index a62244a..bf9d58c 100644 --- a/home/programs/nvim/plugins/utils.nix +++ b/home/programs/nvim/plugins/utils.nix @@ -22,7 +22,10 @@ treesitter = { enable = true; nixGrammars = true; - settings.indent.enable = true; + settings = { + indent.enable = true; + highlight.enable = true; + }; }; treesitter-context.enable = true; };