latex
move from texliveFull to combined and fix doublicated load to ensure correct paths
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{ pkgs, inputs, ... }:
|
{ inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
@@ -11,10 +11,6 @@
|
|||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
extraPackages = with pkgs; [
|
|
||||||
texlive.combined.scheme-full
|
|
||||||
# papis-nvim
|
|
||||||
];
|
|
||||||
|
|
||||||
nixpkgs.useGlobalPackages = false;
|
nixpkgs.useGlobalPackages = false;
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
{ pkgs,... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
texliveFull
|
texlive.combined.scheme-full
|
||||||
texlivePackages.standalone
|
|
||||||
texlivePackages.relsize # needed for BA
|
|
||||||
# papis-nvim
|
# papis-nvim
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -14,6 +12,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
lazyLoad.settings.filetype = [ "tex" ];
|
lazyLoad.settings.filetype = [ "tex" ];
|
||||||
|
|
||||||
|
texlivePackage = pkgs.texlive.combined.scheme-full;
|
||||||
settings = {
|
settings = {
|
||||||
view_automatic = false;
|
view_automatic = false;
|
||||||
mappings_disable = {
|
mappings_disable = {
|
||||||
|
|||||||
Reference in New Issue
Block a user