diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2023-05-28 18:11:16 -0500 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2023-05-28 18:11:16 -0500 |
| commit | a14cfd46039ac29f3d085b2ae7b4e96e0cc1c765 (patch) | |
| tree | 206f0ddaa8701e57468cff06085cb41647792b7c /.zimrc | |
| parent | 22335259c5f9c147b5bc835e52984fbe4ab544f5 (diff) | |
back to zsh
Diffstat (limited to '.zimrc')
| -rw-r--r-- | .zimrc | 61 |
1 files changed, 61 insertions, 0 deletions
@@ -0,0 +1,61 @@ +# Start configuration added by Zim install {{{ +# +# This is not sourced during shell startup, and it's only used to configure the +# zimfw plugin manager. +# + +# +# Modules +# + +# Sets sane Zsh built-in environment options. +zmodule environment +# Provides handy git aliases and functions. +zmodule git +# Applies correct bindkeys for input events. +zmodule input +# Sets a custom terminal title. +zmodule termtitle +# Utility aliases and functions. Adds colour to ls, grep and less. +zmodule utility +# Adds aliases and better defaults for exa. +zmodule exa +# Configures fzf for faster fetching of files and directories names. +zmodule fzf + + +# +# Prompt +# + +# Exposes to prompts how long the last command took to execute, used by asciiship. +zmodule duration-info +# Exposes git repository status information to prompts, used by asciiship. +zmodule git-info +# A heavily reduced, ASCII-only version of the Spaceship and Starship prompts. +zmodule asciiship + +# +# Completion +# + +# Additional completion definitions for Zsh. +zmodule zsh-users/zsh-completions --fpath src +# Enables and configures smart and extensive tab completion. +# completion must be sourced after all modules that add completion definitions. +zmodule completion + +# +# Modules that must be initialized last +# + +# Fish-like syntax highlighting for Zsh. +# zsh-users/zsh-syntax-highlighting must be sourced after completion +zmodule zsh-users/zsh-syntax-highlighting +# Fish-like history search (up arrow) for Zsh. +# zsh-users/zsh-history-substring-search must be sourced after zsh-users/zsh-syntax-highlighting +zmodule zsh-users/zsh-history-substring-search +# Fish-like autosuggestions for Zsh. +zmodule zsh-users/zsh-autosuggestions +# }}} End configuration added by Zim install + |
