dotfiles/conf.d/zim/zimrc

69 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-02-19 20:34:24 +00:00
# Start configuration added by Zim install {{{
# -------
# Modules
# -------
2023-04-04 09:38:34 +00:00
# Environment
#
2021-02-19 20:34:24 +00:00
# Sets sane Zsh built-in environment options.
zmodule environment
# Applies correct bindkeys for input events.
zmodule input
2023-04-04 09:38:34 +00:00
# Completion
#
# Additional completion definitions for Zsh.
zmodule zsh-users/zsh-completions
# Buku completions modules
zmodule buku
# Enables and configures smart and extensive tab completion.
# completion must be sourced after zsh-users/zsh-completions
zmodule completion
# Fish-like autosuggestions for Zsh.
zmodule zsh-users/zsh-autosuggestions
# Productivity
#
# Provides handy git aliases and functions.
zmodule git
2021-02-19 20:34:24 +00:00
# Sets a custom terminal title.
zmodule termtitle
# Provides archive and unarchive functions for easy archive manipulation.
zmodule archive
2021-03-03 16:40:34 +00:00
# Manjaro aliases and functions.
zmodule manjaro
2021-02-19 20:34:24 +00:00
# Personal aliases
zmodule jl-helper
# sudo module
zmodule sudo
# z module
zmodule https://github.com/rupa/z.git
2021-10-04 19:04:08 +00:00
# zsh-kitty completion
zmodule https://github.com/redxtech/zsh-kitty.git
2023-04-04 09:38:34 +00:00
# Utility aliases and functions. Adds colour to ls, grep and less.
zmodule utility
# exa
zmodule exa
# fzf
zmodule fzf
2021-02-19 20:34:24 +00:00
2023-04-04 09:38:34 +00:00
# Syntx highlighting
2021-02-19 20:34:24 +00:00
#
# 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
2023-04-04 09:38:34 +00:00
# Prompt
#
# Exposes git repository status information to prompts.
zmodule git-info
# A customizable version of steeef's prompt theme.
zmodule steeef
# The minimal, blazing-fast, and infinitely customizable prompt for any shell!
zmodule joke/zim-starship
2021-02-19 20:34:24 +00:00
# }}} End configuration added by Zim install