zsh: add = to wordchars

This commit is contained in:
Sam W 2022-05-23 12:30:16 +01:00
parent d1b006a5f7
commit fdec1561eb
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ in {
home.sessionVariables = { home.sessionVariables = {
"PATH" = "$HOME/.local/bin:$PATH"; "PATH" = "$HOME/.local/bin:$PATH";
"EDITOR" = "vim"; "EDITOR" = "vim";
"WORDCHARS" = "\${WORDCHARS//[\\/.]/}"; # ctrl-w on paths without make angery "WORDCHARS" = "\${WORDCHARS//[\\/.=]/}"; # ctrl-w on paths without make angery
}; };
programs = { programs = {
home-manager.enable = true; home-manager.enable = true;