35 lines
875 B
Bash
35 lines
875 B
Bash
[[ $- != *i* ]] && return
|
|
|
|
# disable scroll lock
|
|
stty -ixon
|
|
|
|
alias fuck='sudo $(fc -l -n -1)'
|
|
alias ll='ls -lav --color=auto'
|
|
alias l='ls -lv --color=auto'
|
|
alias ls='ls --color=auto'
|
|
|
|
powerline-daemon -q
|
|
. /usr/share/powerline/bindings/zsh/powerline.zsh
|
|
|
|
# The following lines were added by compinstall
|
|
|
|
zstyle ':completion:*' completer _complete _ignored
|
|
zstyle ':completion:*' matcher-list '' 'm:{[:lower:]}={[:upper:]}' 'r:|[._-]=** r:|=**' 'l:|=* r:|=*'
|
|
zstyle :compinstall filename '/home/livie/.zshrc'
|
|
|
|
autoload -Uz compinit
|
|
compinit
|
|
# End of lines added by compinstall
|
|
# Lines configured by zsh-newuser-install
|
|
HISTFILE=~/.zsh_history
|
|
HISTSIZE=1000
|
|
SAVEHIST=10000
|
|
setopt nomatch notify
|
|
unsetopt autocd beep extendedglob
|
|
bindkey -v
|
|
# End of lines configured by zsh-newuser-install
|
|
|
|
|
|
# Created by `pipx` on 2023-06-17 16:56:49
|
|
export PATH="$PATH:/home/livie/.local/bin"
|