diff --git a/modules/home/shell/neovim.nix b/modules/home/shell/neovim.nix index 324deae..19a4fcb 100644 --- a/modules/home/shell/neovim.nix +++ b/modules/home/shell/neovim.nix @@ -24,6 +24,7 @@ in { extraLuaConfig = '' -- This file simply bootstraps the installation of Lazy.nvim and then calls other files for execution -- This file doesn't necessarily need to be touched, BE CAUTIOUS editing this file and proceed at your own risk. + vim.g.gcc_bin_path = '${lib.getExe pkgs.gcc}' local lazypath = vim.env.LAZY or vim.fn.stdpath "data" .. "/lazy/lazy.nvim" if not (vim.env.LAZY or (vim.uv or vim.loop).fs_stat(lazypath)) then -- stylua: ignore @@ -65,6 +66,7 @@ in { tree-sitter texliveMinimal biber + gcc ]; };