From ed875677e882ff8a4dee025aaad340837fc12897 Mon Sep 17 00:00:00 2001 From: Bad Date: Wed, 23 Nov 2022 10:53:02 +0100 Subject: [PATCH] Add elixir shell history options --- users/modules/neovim/elixir.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/users/modules/neovim/elixir.nix b/users/modules/neovim/elixir.nix index 2bcaf52..a245699 100644 --- a/users/modules/neovim/elixir.nix +++ b/users/modules/neovim/elixir.nix @@ -16,6 +16,7 @@ with lib; ''; }; home.packages = with pkgs; [ elixir_1_14 ]; + home.sessionVariables."ELIXIR_ERL_OPTIONS" = "-kernel shell_history enabled"; programs.neovim.plugins = with pkgs.vimPlugins; [ vim-elixir ]; }; }