Update
This commit is contained in:
parent
75562adea8
commit
e9a20f49e2
@ -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
|
||||||
|
|
||||||
|
@ -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";
|
||||||
|
Loading…
Reference in New Issue
Block a user