77# Initialization code that may require console input (password prompts, [y/n]
88# confirmations, etc.) must go above this block; everything else may go below.
99if [[ -f " ${HOME} /.zgen/init.zsh" && -r " ${XDG_CACHE_HOME:- $HOME / .cache} /p10k-instant-prompt-${(% ):-% n} .zsh" ]]; then
10- source " ${XDG_CACHE_HOME:- $HOME / .cache} /p10k-instant-prompt-${(% ):-% n} .zsh"
10+ . " ${XDG_CACHE_HOME:- $HOME / .cache} /p10k-instant-prompt-${(% ):-% n} .zsh"
1111 P10K_DELAYED_SETUP=false
1212else
1313 P10K_DELAYED_SETUP=true
@@ -90,7 +90,7 @@ if [ ! -d "${HOME}/.zgen" ]; then
9090 git clone https://github.com/tarjoilija/zgen.git " ${HOME} /.zgen"
9191fi
9292# This has to be after ZSH_CUSTOM, but before using the zgen command
93- source " ${HOME} /.zgen/zgen.zsh"
93+ . " ${HOME} /.zgen/zgen.zsh"
9494
9595# Which plugins would you like to load?
9696# Standard plugins can be found in $ZSH/plugins/
177177# Delayed Powerlevel10k setup to avoid the warning about console output.
178178# This has to be after "zgen save"
179179if [[ " ${P10K_DELAYED_SETUP} " = true && -r " ${XDG_CACHE_HOME:- $HOME / .cache} /p10k-instant-prompt-${(% ):-% n} .zsh" ]]; then
180- source " ${XDG_CACHE_HOME:- $HOME / .cache} /p10k-instant-prompt-${(% ):-% n} .zsh"
180+ . " ${XDG_CACHE_HOME:- $HOME / .cache} /p10k-instant-prompt-${(% ):-% n} .zsh"
181181fi
182182
183183# -----
@@ -248,7 +248,7 @@ zstyle ':completion:*' menu select=2
248248# -----
249249
250250# Handled by zgen
251- # source "${ZSH}/oh-my-zsh.sh"
251+ # . "${ZSH}/oh-my-zsh.sh"
252252
253253# User configuration
254254
@@ -306,7 +306,7 @@ bindkey \^U backward-kill-line
306306# Expand glob expressions, subcommands and aliases
307307# This variable serves as a blacklist
308308GLOBALIAS_FILTER_VALUES=()
309- # source ${ZSHLIBPATH}ohmyzsh/plugins/globalias/globalias.plugin.zsh
309+ # . ${ZSHLIBPATH}ohmyzsh/plugins/globalias/globalias.plugin.zsh
310310globalias () {
311311 # Get last word to the left of the cursor:
312312 # (z) splits into words using shell parsing
@@ -368,7 +368,7 @@ if command -v gem &> /dev/null; then
368368 COLORLS_FILE_PATH=" $( gem which colorls) "
369369 if [ -f " ${COLORLS_FILE_PATH} " ]; then
370370 COLORLS_PATH=" $( dirname " ${COLORLS_FILE_PATH} " ) "
371- source " ${COLORLS_PATH} /tab_complete.sh"
371+ . " ${COLORLS_PATH} /tab_complete.sh"
372372 alias lc=' colorls -lA --sd'
373373 else
374374 # echo "Colorls was not found. Please install it with \"gem install colorls\" or remove it form .zshrc."
386386# POWERLINE_SCRIPT="/usr/share/powerline/bindings/zsh/powerline.zsh"
387387# if [ -f $POWERLINE_SCRIPT ]; then
388388# powerline-daemon -q
389- # source "/usr/share/powerline/bindings/zsh/powerline.zsh"
389+ # . "/usr/share/powerline/bindings/zsh/powerline.zsh"
390390# fi
391391
392392# PowerShell telemetry has to be disabled with an environment variable before starting it.
@@ -395,11 +395,11 @@ export POWERSHELL_TELEMETRY_OPTOUT="1"
395395
396396# Powerlevel10k configuration
397397# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
398- [[ ! -f ~ /.p10k.zsh ]] || source ~ /.p10k.zsh
398+ [[ ! -f ~ /.p10k.zsh ]] || . ~ /.p10k.zsh
399399
400400# Add Snap icons to the launcher
401401if [ -f " /etc/profile.d/apps-bin-path.sh" ]; then
402- emulate sh -c " source /etc/profile.d/apps-bin-path.sh"
402+ emulate sh -c " . /etc/profile.d/apps-bin-path.sh"
403403fi
404404
405405# Fix command-line usage of LibreOffice
0 commit comments