diff --git a/modules/home/cli/nixvim/plugins/completion/codeium.nix b/modules/home/cli/nixvim/plugins/completion/codeium.nix index 36bc564..8b39f92 100644 --- a/modules/home/cli/nixvim/plugins/completion/codeium.nix +++ b/modules/home/cli/nixvim/plugins/completion/codeium.nix @@ -2,7 +2,7 @@ programs.nixvim.plugins = { codeium-nvim = { enable = true; - tools = { + settings.tools = { curl = "${pkgs.curl}/bin/curl"; gzip = "${pkgs.gzip}/bin/gzip"; }; diff --git a/modules/home/cli/nixvim/plugins/editor/lualine.nix b/modules/home/cli/nixvim/plugins/editor/lualine.nix index 33ca6b7..f26649f 100644 --- a/modules/home/cli/nixvim/plugins/editor/lualine.nix +++ b/modules/home/cli/nixvim/plugins/editor/lualine.nix @@ -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 = ""; + } + ]; + }; }; }; }