dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 92a2839f124fc608b9eb9d42d7bdbbd86a4a18c2
parent 670600604d3bb5b30edf2f18ab56d12be387823d
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Tue, 14 Apr 2020 22:46:30 +0200

shell: lf completions now integrated in brew installation

Former-commit-id: 562daf871ed24158fa083aa93206c325238ec1a3
Diffstat:
Dshell/zsh-completions-mine/_lf | 29-----------------------------
Mshell/zshrc | 2+-
2 files changed, 1 insertion(+), 30 deletions(-)

diff --git a/shell/zsh-completions-mine/_lf b/shell/zsh-completions-mine/_lf @@ -1,29 +0,0 @@ -#compdef lf - -# For using these completions you must: -# - rename this file to _lf -# - add the containing folder to $fpath in .zshrc, like this: -# ''' -# fpath=(/path/to/folder/containing_lf $fpath) -# autoload -U compinit -# compinit -# ''' -# -# zsh completions for 'lf' -# automatically generated with http://github.com/RobSis/zsh-completion-generator -local arguments - -arguments=( - '-command[command to execute on client initialization]' - '-cpuprofile[path to the file to write the CPU profile]' - '-doc[show documentation]' - '-last-dir-path[path to the file to write the last dir on exit (to use for cd)]' - '-memprofile[path to the file to write the memory profile]' - '-remote[send remote command to server]' - '-selection-path[path to the file to write selected files on open (to use as open file dialog)]' - '-server[start server (automatic)]' - '-version[show version]' - '*:filename:_files' -) - -_arguments -s $arguments diff --git a/shell/zshrc b/shell/zshrc @@ -17,7 +17,7 @@ source_if_exists() { setopt interactivecomments # Enable extra completions -fpath=($DOTFILES/shell/zsh-completions/src $DOTFILES/shell/zsh-completions-mine $fpath) +fpath=($DOTFILES/shell/zsh-completions/src $fpath) autoload -Uz compinit && compinit source $DOTFILES/shell/oh-my-zsh-defaults/completion.zsh source $DOTFILES/shell/oh-my-zsh-defaults/directories.zsh