romkatv
b01f02aa5c
prompt: update powerlevel10k submodule to the latest commit
...
New feature: Configuration Wizard. Type `p10k configure` to
explore the unique styles and features Powerlevel10k has
to offer.
5 years ago
John P. Neumann
5566a9c792
Resolves 1641 - Checks whether the prompt is set to be managed or not. ( #1723 )
...
This is a new variable that will need to be set on all new prompts and
is not backwards compatible with custom prompts that are not prezto
managed, but use prezto's editor-info functionality. Updated the
README.md with additional information for themes.
5 years ago
Roman Perepelitsa
3ae422a0da
prompt: update powerlevel10k submodule to the latest commit ( #1727 )
...
The last update has picked up a nasty bug in gitstatus that disables all user aliases. This commit fixes it.
5 years ago
Roman Perepelitsa
6dd97d15e0
prompt: update powerlevel10k submodule to the latest commit ( #1726 )
...
Changes include a few bug fixes and a score of new features.
5 years ago
Roman Perepelitsa
e94b6b2078
prompt: update powerlevel10k submodule to the latest commit ( #1717 )
...
A bunch of bug fixes. Most notably romkatv/powerlevel10k#89 .
5 years ago
Roman Perepelitsa
09e83ed282
prompt: update powerlevel10k submodule ( #1715 )
5 years ago
Kaleb Elwert
1d58546406
prompt: update powerlevel10k to latest commit
6 years ago
Roman Perepelitsa
ac65e8eb18
Add powerlevel10k theme ( #1695 )
6 years ago
Toshiki Murayama
bb901dfb7e
Update zsh-autosuggestions submodule
6 years ago
Chris Ewald
1f4601e44c
Disable node-info output when value is system.
...
This makes the behavior consistent with rbenv and pyenv.
6 years ago
monai
b8d7e2cad8
Add zstyle option to disable zsh option CORRECT
6 years ago
Maxim Baz
5d7c990eec
archive: enhance parallel operations
6 years ago
Yutian Li
d22effbf85
editor: allow alt+arrow keys for word movement ( #1688 )
6 years ago
Yutian Li
4abbc55721
remove mutually exclusive option
6 years ago
Diego Rabatone Oliveira
777674e07e
Update syntax-highlighting submodule
6 years ago
Alexander Neumann
ba4063f99e
Remove old prompt tempfile and pid variable
...
This is a leftover of #1385 , the temp file and the PID variable is not
needed any more.
6 years ago
Diego Rabatone Oliveira
88456ec9b6
Updating submodules to lastest tags/master commits
6 years ago
Jeff Widman
4a16d3fa50
Fix typo: gupl --> gulp ( #1668 )
6 years ago
Indrajit Raychaudhuri
a338cba805
python: Use brace expansion for pip compctl match
...
Just use brace expansion only (and not a mix of brace expansion and
path expansion) to expand `sed` match for more variants of 'pip*' (pip,
pip2, pip3, pip2.7, pip3.7 etc.) in `compctl` assignment
6 years ago
Diego Rabatone Oliveira
0e6429da97
Remove duplicated information from git module README ( #1657 )
6 years ago
Indrajit Raychaudhuri
9d3e2f0204
python: Expand compctl matches for pip variants
...
Expand `sed` match for more variants of 'pip*' (pip, pip2, pip3, pip2.7,
pip3.7 etc.) for `compctl` assignment
6 years ago
Indrajit Raychaudhuri
dc8e168d5f
command-not-found: Minor reformatting
6 years ago
Indrajit Raychaudhuri
3093f1b966
homebrew: Load 'HOMEBREW_' prefixed variables only
...
Load 'HOMEBREW_' prefixed variables only. Avoid loading 'PATH'
related variables as they are already handled in standard zsh
configuration.
6 years ago
Indrajit Raychaudhuri
11184084bc
homebrew: Simplify array assignment
...
No need for nesting array assignment only to flatten it later.
6 years ago
Indrajit Raychaudhuri
54dff31b63
archive: Enhance 'archive' helper to support multi file archive
...
We now allow multiple paths (files/directories) to be archived in
one shot. Validation of the target path(s) is now delegated to the
actual archive helper.
6 years ago
Kaleb Elwert
eee3c9c166
git: add documentation for new aliases
6 years ago
Bruno Oliveira da Silva
39e1a63349
Aliases to digital sign/verify commits and tags ( #651 )
6 years ago
Indrajit Raychaudhuri
d275f316ff
syntax-highlighting: Further clarify relative module ordering
6 years ago
Indrajit Raychaudhuri
6a2cc2e146
rsync: Update link to Bombich rsync page again
6 years ago
Indrajit Raychaudhuri
d45d87b08f
node: Make nvm lookup mechanism more efficient in homebrewed environment
...
In homebrewed environment, avoid using `brew --prefix nvm` which is
ruby based and is super slow. Instead, rely on homebrew standard
behavior wherein all installed packages are available in canonical
path $(brew --prefix)/opt/<package> (for nvm it would obviously be
`$(brew --prefix)/opt/nvm`).
NB: `$(brew --prefix)` (without additional argument) is a simple shell
shortcut and doesn't have the same performance impact.
6 years ago
Indrajit Raychaudhuri
a987c8bc8a
python: Fix pip compctl file match pattern
...
Make `sed` match more reliable while replacing the whole of 'pip*' with
'pip pip2 pip3' for `compctl` assignment
6 years ago
Indrajit Raychaudhuri
f745645342
command-not-found: Support custom Homebrew tap on MacOS
...
Added support for homebrew-command-not-found from a non-default tap
6 years ago
Indrajit Raychaudhuri
a2398fc045
node: Cache completion for additional helpers
...
Add support for npm and additional well-known helper commands
6 years ago
Indrajit Raychaudhuri
e7fea3343f
python: Use more apropriate filename for pip completion
6 years ago
Indrajit Raychaudhuri
53286ebbdb
python: Make cached completion file mangling more reliable
...
While mangling cached completion file, we cannot just assume that
`$pip_command` would resolve to `pip` -- it might be `pip2` or `pip3`
depending on the relative position in zsh `$commands` array. Thus
replace the whole of 'pip*' with 'pip pip2 pip3' for compctl assignment.
6 years ago
Indrajit Raychaudhuri
2286662b80
command-not-found: Restore idiomatic homebrewed handler loading on MacOS
...
As is the convention in prezto, we cache the command-not-found handler to
avoid incurring the performance penalty of loading ruby interpreter on
every call. This restores the 'Homebrew way' of loading command-not-found
handler.
Further, the formally recommended command lookup mechanism in Homebrew
(viz., `brew command command-not-found-init`) is ruby based and is super
slow. To avoid performance penalty, we `find` it ourselves from
`TAP_DIRECTORY` defined internally in Homebrew.
This also reinstates support for custom taps or non-standard Homebrew location.
6 years ago
Diego Rabatone Oliveira
3de1e24965
Update submodules versions
6 years ago
John P. Neumann
8bfed01773
Resolves #1641 - Roll the pure prompt back from 1.8.0 to 1.7.0
6 years ago
Diego Rabatone Oliveira
e6eea17b12
Update submodules
...
Updating to the latest released tags for modules:
completetion
syntax-highlighting
And for agnoster prompt
6 years ago
Tercio Gaudencio Filho
1ed5331e84
Fix issue #1635 . Option to disable GNU ls to group directories first.
6 years ago
Indrajit Raychaudhuri
bfe1815cbf
prompt/sorin: Minor cleanup and reordering
6 years ago
Indrajit Raychaudhuri
a43093119e
prompt/minimal: Add support for preview
6 years ago
Indrajit Raychaudhuri
a3753d8f3b
prompt/steeef: Add basic support for editor_info and preview
6 years ago
Indrajit Raychaudhuri
58809b2d21
Update submodule 'history-substring-search'
...
history-substring-search doesn't tag releases anymore and just maintains
the master branch -- switching to tracking master instead.
6 years ago
Indrajit Raychaudhuri
992b9de505
doc: More copyediting and formatting for consistency
6 years ago
Indrajit Raychaudhuri
6f603df7a6
general: Miscellaneous documentation updates
...
- Add missing documentation for options and environment variables
- Rearrange definition and documentation of 'Options', 'Variables'
and 'Aliases' in a consistent order
6 years ago
Indrajit Raychaudhuri
ff5bd9306e
submodule: Updating submodules
...
'modules/prompt/external/async' updated to 'v1.7.1'
'modules/syntax-highlighting/external' updated to latest 'master'
6 years ago
Indrajit Raychaudhuri
df4c61861d
doc: Bit of copyediting and formatting for consistency and clarification
6 years ago
Kaleb Elwert
6c46804f41
environment: only enable bracketed paste on non-dumb terminals
...
Fixes #1552
6 years ago
Kaleb Elwert
e9387a177e
python: respect PYENV_ROOT if already set
...
Fixes #1578
6 years ago