elvish: add to deploy script

This commit is contained in:
Hoang Nguyen 2021-03-19 22:01:14 +03:00
parent cac1caa806
commit 71241ad12b
No known key found for this signature in database
GPG Key ID: 813CF484F4993419
2 changed files with 4 additions and 1 deletions

View File

@ -90,6 +90,7 @@ cp -rfv ./home/.local/bin/ ~/.local/bin/
# The bloated dotfiles itself
cp -rfv ./home/.mbsyncrc ~/.mbsyncrc
cp -rfv ./home/.rtorrent.rc ~/.rtorrent.rc
# cp -rfv ./home/.elvish/ ~/.elvish/
cp -rfv ./home/.config/alacritty/ ~/.config/alacritty/
cp -rfv ./home/.config/amfora/ ~/.config/amfora/
cp -rfv ./home/.config/anime-downloader/ ~/.config/anime-downloader/

View File

@ -12,7 +12,9 @@ use math
use readline-binding
# Prompt
eval (starship init elvish)
if ?(command -v starship >/dev/null) {
eval (starship init elvish)
}
# Case-insensitive completion
edit:completion:matcher[''] = [p]{ edit:match-prefix &ignore-case $p }