From 0e18599a8d940e481a02b08be60923ed0e793c4b Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Wed, 4 Oct 2023 22:23:56 +0200 Subject: [PATCH] zsh: rename: vi-mode -> line-editor --- config/zsh/.zshrc | 6 +++--- config/zsh/{vi-mode.zsh => line-editor.zsh} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename config/zsh/{vi-mode.zsh => line-editor.zsh} (100%) diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc index d538d81..115fe0f 100644 --- a/config/zsh/.zshrc +++ b/config/zsh/.zshrc @@ -1,10 +1,10 @@ # Set up zsh for interactive use (options, prompt, aliases, etc.) source "$ZDOTDIR/aliases.zsh" source "$ZDOTDIR/completion.zsh" -source "$ZDOTDIR/history.zsh" -source "$ZDOTDIR/prompt.zsh" -source "$ZDOTDIR/vi-mode.zsh" source "$ZDOTDIR/functions.zsh" +source "$ZDOTDIR/history.zsh" +source "$ZDOTDIR/line-editor.zsh" +source "$ZDOTDIR/prompt.zsh" # Prevent ctrl-s from freezing the terminal. stty stop undef diff --git a/config/zsh/vi-mode.zsh b/config/zsh/line-editor.zsh similarity index 100% rename from config/zsh/vi-mode.zsh rename to config/zsh/line-editor.zsh