Skip to content

Commit

Permalink
nix: Fix nvim-server
Browse files Browse the repository at this point in the history
  • Loading branch information
juanibiapina committed Jan 27, 2025
1 parent d757265 commit b8b3de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/packages/nvim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ in
nvim-server = writeShellApplication {
name = "nvim-server";
text = ''
cwd_hash=$(echo -n "$PWD" | md5)
cwd_hash=$(echo -n "$PWD" | ${pkgs.outils}/bin/md5)
socket_path="/tmp/nvim.$cwd_hash"
${wrapped}/bin/nvim --listen "$socket_path" "$@"
Expand Down

0 comments on commit b8b3de9

Please sign in to comment.