summary refs log tree commit diff
path: root/nixos/modules/programs/zsh/zsh-syntax-highlighting.nix
Commit message (Collapse)AuthorAge
* nixos/doc: clean up defaults and examplesNaïm Favier2021-10-04
|
* nixos/treewide: Move rename.nix imports to their respective modulesSilvan Mosberger2019-12-10
| | | | | | | | A centralized list for these renames is not good because: - It breaks disabledModules for modules that have a rename defined - Adding/removing renames for a module means having to find them in the central file - Merge conflicts due to multiple people editing the central file
* nixos/zsh-syntax-highlighting: Fix highlighting when ohMyZsh is enabledSilva Alejandro Ismael2019-10-23
| | | | | | | | | From https://github.com/zsh-users/zsh-syntax-highlighting#faq: "It must be sourced after all custom widgets have been created (i.e., after all zle -N calls and after running compinit)." zsh-syntax-highlighting must be sourced to the end.
* nixos/modules: Remove all usages of types.stringSilvan Mosberger2019-08-31
| | | | | | And replace them with a more appropriate type Also fix up some minor module problems along the way
* zsh.syntaxHighlighting: add option to customize stylesIzorkin2019-01-03
|
* nixos/zsh-syntax-highlighting: refactorWilliButz2017-10-09
|
* programs.zsh.syntaxHighlighting: Fix default value for patternsDaniel Fullmer2017-06-04
|
* programs.zsh.syntax-highlighting: simplify enable option by using ↵Maximilian Bosch2017-05-31
| | | | `mkEnableOption`
* programs.zsh.syntaxHighlighting: refactor to use attr sets rather than ↵Maximilian Bosch2017-05-31
| | | | | | recursive lists for patterns The idea has been described here: https://github.com/NixOS/nixpkgs/pull/25323#issuecomment-298677369
* zsh module: rename option syntax-highlightingWilli Butz2017-05-21
| | | | rename zsh-option "syntax-highlighting" -> "syntaxHighlighting"
* programs.zsh.syntax-highlighting: support custom highlighting patternsMaximilian Bosch2017-05-01
| | | | | see https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters/pattern.md for further reference.
* programs.zsh.syntax-highlighting: refactor `highlighters` option for proper ↵Maximilian Bosch2017-04-25
| | | | | | | | validation Right now the `programs.zsh.syntax-highlighting.highlighters` option lacks appropriate validation which can cause confusing things when mistyping a higlighter for zsh-syntax-highlighting.
* zsh-syntax-highlighting: Add more configuration options and move to module ↵Maximilian Bosch2017-04-23
(#25153) * programs.zsh: factor zsh-syntax-highlighting out into its own module * programs.zsh.syntax-highlighting: add `highlighters` option * programs.zsh: document BC break introduced by moving zsh-syntax-completion into its own module