diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-05 07:54:01 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-05 07:54:01 +0100 |
commit | e94febc32250cc9e06e6f2de6a2a2b4d980c24a4 (patch) | |
tree | 76bf038aec2b5377d0914c9e9a2de9e87e34c4b6 /nix-conf/home | |
parent | cf736c320b37222ef81694cac554097da0f7597e (diff) | |
download | dotfiles-e94febc32250cc9e06e6f2de6a2a2b4d980c24a4.tar.gz |
Move LSP_USE_PLISTS to home.sessionVariables
Diffstat (limited to 'nix-conf/home')
-rw-r--r-- | nix-conf/home/includes/common.nix | 4 | ||||
-rw-r--r-- | nix-conf/home/includes/zsh.nix | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/nix-conf/home/includes/common.nix b/nix-conf/home/includes/common.nix index 84bd7ae..9d76f5b 100644 --- a/nix-conf/home/includes/common.nix +++ b/nix-conf/home/includes/common.nix @@ -28,6 +28,10 @@ in secrets."git_email_config/default" = { }; }; + home.sessionVariables = { + LSP_USE_PLISTS = "true"; + }; + home.packages = with pkgs; [ hcr scr diff --git a/nix-conf/home/includes/zsh.nix b/nix-conf/home/includes/zsh.nix index fcec135..505bd2d 100644 --- a/nix-conf/home/includes/zsh.nix +++ b/nix-conf/home/includes/zsh.nix @@ -115,7 +115,6 @@ in NVM_AUTO_USE = true; NVM_LAZY_LOAD = true; - LSP_USE_PLISTS = true; LESS = "-iRXF"; FZF_DEFAULT_COMMAND = ''rg --files --no-ignore --hidden --follow -g \"!{.git,node_modules}/*\" 2> /dev/null''; |