fold .zshrc

This commit is contained in:
lelgenio 2019-10-21 16:28:20 -03:00
parent 43a55cfea3
commit 6630d55bfc
1 changed files with 17 additions and 12 deletions

View File

@ -1,3 +1,6 @@
# LEL
# Environment Vairables {{{
#
export QT_QPA_PLATFORMTHEME=qt5ct export QT_QPA_PLATFORMTHEME=qt5ct
export QT_SCALE_FACTOR=1 export QT_SCALE_FACTOR=1
export QPA_PLATFORM=wayland export QPA_PLATFORM=wayland
@ -8,8 +11,8 @@ export VISUAL=nvim
export BROWSER=qutebrowser export BROWSER=qutebrowser
export PAGER=less export PAGER=less
# #}}}
# set window title # set window title {{{
# #
autoload -Uz add-zsh-hook autoload -Uz add-zsh-hook
@ -27,8 +30,8 @@ export PAGER=less
add-zsh-hook -Uz precmd xterm_title_precmd add-zsh-hook -Uz precmd xterm_title_precmd
add-zsh-hook -Uz preexec xterm_title_preexec add-zsh-hook -Uz preexec xterm_title_preexec
fi fi
# # }}}
# start sway if using tty1 # start sway if using tty1 {{{
# #
if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]] if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]
then then
@ -36,8 +39,8 @@ export PAGER=less
exec sway > /dev/null exec sway > /dev/null
fi fi
# # }}}
# Plugins # Plugins {{{
# #
export ZPLUG_HOME=~/.local/share/zplug export ZPLUG_HOME=~/.local/share/zplug
if [ ! -d $ZPLUG_HOME ] if [ ! -d $ZPLUG_HOME ]
@ -76,8 +79,8 @@ export PAGER=less
zplug load zplug load
# # }}}
# Aliases # Aliases {{{
# #
abbrev-alias -g v=nvim abbrev-alias -g v=nvim
abbrev-alias -g rv="sudo nvim" abbrev-alias -g rv="sudo nvim"
@ -107,8 +110,8 @@ export PAGER=less
command man "$@" command man "$@"
} }
# # }}}
# Keys. # Keys. {{{
# #
autoload -z edit-command-line autoload -z edit-command-line
zle -N edit-command-line zle -N edit-command-line
@ -149,8 +152,8 @@ export PAGER=less
esac esac
# # }}}
# Completions # Completions {{{
# #
HYPHEN_INSENSITIVE="true" HYPHEN_INSENSITIVE="true"
ENABLE_CORRECTION="true" ENABLE_CORRECTION="true"
@ -170,4 +173,6 @@ export PAGER=less
autoload -Uz compinit autoload -Uz compinit
compinit compinit
#}}}
# vim:foldmethod=marker