This commit is contained in:
Hadi 2024-09-02 18:30:30 +02:00
parent 75562adea8
commit e9a20f49e2
2 changed files with 15 additions and 4 deletions

View File

@ -25,7 +25,6 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
- [ ] Keymaps: - [ ] Keymaps:
- Trouble - Trouble
- Tagbar (actually not working) - Tagbar (actually not working)
- [ ] Disable background color for headlines.nvim for titles
- [ ] Update docs - [ ] Update docs

View File

@ -1,6 +1,13 @@
{ pkgs, ... }: { { pkgs, config, ... }: {
home.packages = with pkgs; [ ctags ]; home.packages = with pkgs; [ ctags ];
programs.nixvim = { programs.nixvim = {
highlight = {
Headline.bg = "#${config.var.theme.colors.bgalt}";
Headline.bold = true;
Headline1.bg = "#${config.var.theme.colors.c0}";
Headline1.bold = true;
};
plugins = { plugins = {
lualine.enable = true; lualine.enable = true;
noice.enable = true; noice.enable = true;
@ -10,17 +17,22 @@
}; };
bufferline.enable = true; bufferline.enable = true;
trouble.enable = true; trouble.enable = true;
indent-blankline.enable = true;
which-key.enable = true; which-key.enable = true;
headlines = { headlines = {
enable = true; enable = true;
settings = { settings = {
markdown = { markdown = {
codeblock_highlight = false; headline_highlights = [ "Headline1" "Headline" ];
fat_headlines = false;
bullets = [ "" "" "" "" ];
dash_string = "";
codeblock_highlight = "Headline";
}; };
}; };
}; };
nvim-colorizer.enable = true; nvim-colorizer.enable = true;
# tagbar.enable = true; tagbar.enable = true; # FIXME: Tagbar is not working
}; };
keymaps = [{ keymaps = [{
key = "<leader>t"; key = "<leader>t";