added neocord and nvim-lightbulb to nixvim config

This commit is contained in:
pagedmov
2024-11-09 16:06:06 -05:00
parent 231112356c
commit d38da56ba2
7 changed files with 46 additions and 1 deletions

View File

@@ -11,6 +11,8 @@
./lsp.nix
./fidget.nix
./lualine.nix
./nvim-lightbulb.nix
./neocord.nix
./plugins.nix
./nvim-tree.nix
./telescope.nix

View File

@@ -25,7 +25,7 @@
sections = {
lualine_a = ["mode"];
lualine_b = ["buffers"];
lualine_c = [""];
lualine_c = [];
lualine_x = ["searchcount" "fileformat" "filetype"];
lualine_y = ["branch" "diff" "diagnostics"];
lualine_z = ["location"];

View File

@@ -0,0 +1,19 @@
{
programs.nixvim.plugins.neocord = {
enable = true;
settings = {
logo = "https://styles.redditmedia.com/t5_30kix/styles/communityIcon_n2hvyn96zwk81.png";
logo_tooltip = "Neovim";
buttons = [
{
label = " My GitHub";
url = "https://github.com/pagedMov";
}
{
label = " Nixvim";
url = "https://github.com/nix-community/nixvim";
}
];
};
};
}

View File

@@ -0,0 +1,11 @@
{
programs.nixvim.plugins.nvim-lightbulb = {
enable = true;
settings = {
virtual_text = {
enable = true;
};
autocmd.enabled = true;
};
};
}