mirror of
https://github.com/dwinkler1/nvimConfig.git
synced 2026-07-07 16:08:22 -04:00
hopefully R fix
This commit is contained in:
parent
d218b05d48
commit
740f86ad7b
1 changed files with 2 additions and 2 deletions
|
|
@ -13,7 +13,7 @@
|
||||||
})
|
})
|
||||||
(lib.mkIf (config.cats.r or false) {
|
(lib.mkIf (config.cats.r or false) {
|
||||||
RNVIM_COMPLDIR = "$PWD/.r-compl";
|
RNVIM_COMPLDIR = "$PWD/.r-compl";
|
||||||
R_LIBS_USER = "${pkgs.nvimcom}/library:$PWD/.r-libs";
|
R_LIBS_USER = "$PWD/.r-libs";
|
||||||
TMPDIR = "$PWD/.r-tmp";
|
TMPDIR = "$PWD/.r-tmp";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
# Environment variables with defaults (can be overridden by user)
|
# Environment variables with defaults (can be overridden by user)
|
||||||
config.envDefault = lib.mkMerge [
|
config.envDefault = lib.mkMerge [
|
||||||
(lib.mkIf (config.cats.r or false) {
|
(lib.mkIf (config.cats.r or false) {
|
||||||
R_LIBS_USER = "${pkgs.nvimcom}/library:$PWD/.r-libs";
|
R_LIBS_USER = "$PWD/.r-libs";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue