Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ecarlson94 committed Sep 11, 2024
1 parent a5b63e1 commit eed20d6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 20 deletions.
2 changes: 1 addition & 1 deletion modules/home/cli/nixvim/plugins/completion/codeium.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
programs.nixvim.plugins = {
codeium-nvim = {
enable = true;
tools = {
settings.tools = {
curl = "${pkgs.curl}/bin/curl";
gzip = "${pkgs.gzip}/bin/gzip";
};
Expand Down
42 changes: 23 additions & 19 deletions modules/home/cli/nixvim/plugins/editor/lualine.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,31 @@
programs.nixvim.plugins.lualine = {
enable = true;

componentSeparators = {
left = "";
right = "";
};
settings = {
options = {
component_separators = {
left = "";
right = "";
};

sectionSeparators = {
left = "";
right = "";
};
section_separators = {
left = "";
right = "";
};
};

sections = {
lualine_a = [
{
separator.left = "";
}
];
lualine_z = [
{
separator.right = "";
}
];
sections = {
lualine_a = [
{
separator.left = "";
}
];
lualine_z = [
{
separator.right = "";
}
];
};
};
};
}

0 comments on commit eed20d6

Please sign in to comment.