2021-04-27 23:25:21 +03:00
|
|
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
|
|
|
# Initialization code that may require console input (password prompts, [y/n]
|
|
|
|
# confirmations, etc.) must go above this block; everything else may go below.
|
|
|
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
|
|
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
|
|
|
fi
|
|
|
|
|
2017-04-22 16:53:37 +03:00
|
|
|
# The following lines were added by compinstall
|
|
|
|
zstyle :compinstall filename '/home/lanxu/.zshrc'
|
|
|
|
|
|
|
|
autoload -U compinit promptinit colors
|
|
|
|
compinit
|
|
|
|
promptinit
|
|
|
|
colors
|
|
|
|
# End of lines added by compinstall
|
|
|
|
# Lines configured by zsh-newuser-install
|
|
|
|
HISTFILE=~/.histfile
|
|
|
|
HISTSIZE=1000
|
|
|
|
SAVEHIST=1000
|
|
|
|
setopt notify
|
|
|
|
|
|
|
|
# Ignore lines prefixed with '#'.
|
|
|
|
setopt interactivecomments
|
|
|
|
|
|
|
|
# Ignore duplicate in history.
|
|
|
|
setopt hist_ignore_dups
|
|
|
|
|
|
|
|
# Prevent record in history entry if preceding them with at least one space
|
|
|
|
setopt hist_ignore_space
|
|
|
|
|
|
|
|
# This will set the default prompt to the walters theme
|
|
|
|
#prompt grml
|
|
|
|
|
|
|
|
# You may need to manually set your language environment
|
|
|
|
export LANG=fi_FI.UTF-8
|
|
|
|
|
|
|
|
# Preferred editor for local and remote sessions
|
|
|
|
if [[ -n $SSH_CONNECTION ]]; then
|
|
|
|
export EDITOR='vim'
|
|
|
|
else
|
|
|
|
export EDITOR='vim'
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Syntax highlighting
|
|
|
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
2019-06-09 14:55:47 +03:00
|
|
|
source ~/.zplugins
|
2020-12-06 23:08:50 +02:00
|
|
|
# Autosuggestions
|
|
|
|
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
|
2017-04-22 16:53:37 +03:00
|
|
|
|
|
|
|
alias top=htop
|
2021-04-27 23:25:21 +03:00
|
|
|
alias ll="exa -lh"
|
|
|
|
alias la="exa -a"
|
2020-06-03 16:51:25 +03:00
|
|
|
alias lp="keepass.sh"
|
2019-09-26 23:23:22 +03:00
|
|
|
alias ranger="ranger"
|
2021-04-27 23:25:21 +03:00
|
|
|
#alias lf="TCELL_TRUECOLOR=on lf"
|
2017-12-17 15:33:10 +02:00
|
|
|
alias search="search.sh"
|
2017-04-22 16:53:37 +03:00
|
|
|
#alias ls="ls -N --time-style=long-iso --color=auto"
|
2021-04-27 23:25:21 +03:00
|
|
|
#alias ls="ls --time-style=long-iso --color=auto --human-readable --group-directories-first --classify"
|
2017-04-22 16:53:37 +03:00
|
|
|
alias rhc='RUBYOPT="-W0" rhc'
|
|
|
|
# Other
|
|
|
|
alias fixsteam='find ~/.steam/root/ \( -name "libgcc_s.so*" -o -name "libstdc++.so*" -o -name "libxcb.so*" \) -print -delete'
|
|
|
|
alias runsteam="LD_PRELOAD='/usr/$LIB/libstdc++.so.6 /usr/$LIB/libgcc_s.so.1 /usr/$LIB/libxcb.so.1 /usr/$LIB/libgpg-error.so' /usr/bin/steam"
|
|
|
|
alias steamgamesdir='cd ~/.local/share/Steam/SteamApps/common'
|
2017-10-06 22:50:36 +03:00
|
|
|
alias emsdksetup='source $EMSDK/emsdk_env.sh'
|
|
|
|
alias runwinesteam="MESA_GL_VERSION_OVERRIDE=3.3COMPAT PULSE_LATENCY_MSEC=60 run-desktop.py ~/.local/share/applications/wine/Programs/Steam/Steam.desktop"
|
2019-03-23 17:28:58 +02:00
|
|
|
alias rbackup="restic -r rclone:hubic:ChimeraLinux"
|
2019-10-30 20:41:58 +02:00
|
|
|
alias bat="bat --theme base16"
|
2019-12-15 17:33:04 +02:00
|
|
|
alias wine32="WINEPREFIX=~/.wine32 wine"
|
2020-12-06 23:08:50 +02:00
|
|
|
alias resetkbcolors="/usr/bin/g512-led -p /etc/g810-led/profile"
|
|
|
|
# alias steam="DBUS_SESSION_BUS_ADDRESS=unix:abstract=/dev/null steam"
|
2017-04-22 16:53:37 +03:00
|
|
|
# https://github.com/chriskempson/base16-shell
|
|
|
|
# git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell
|
2021-04-27 23:25:21 +03:00
|
|
|
# source $HOME/.config/base16-shell/scripts/base16-default-dark.sh
|
|
|
|
# source $HOME/.config/base16-shell/scripts/base16-solarized-light.sh
|
|
|
|
# source $HOME/.config/base16-shell/scripts/base16-solarized-dark.sh
|
2017-04-22 16:53:37 +03:00
|
|
|
|
|
|
|
# Emscripten
|
|
|
|
#source /home/lanxu/Koodit/github/emsdk/emsdk_env.sh
|
|
|
|
|
2019-09-01 14:40:03 +03:00
|
|
|
#TERM=xterm-256color
|
2018-02-21 22:01:06 +02:00
|
|
|
#bindkey "${terminfo[khome]}" beginning-of-line
|
|
|
|
#bindkey "${terminfo[kend]}" end-of-line
|
2019-06-09 17:14:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
function auradd {
|
|
|
|
pkg=$1
|
2020-12-06 23:08:50 +02:00
|
|
|
aur sync --no-view --no-confirm --rebuild --database custom "$pkg" >&2
|
2019-06-09 17:14:30 +03:00
|
|
|
sudo pacman -Sy "$pkg"
|
|
|
|
}
|
|
|
|
|
|
|
|
function aurrm {
|
|
|
|
pkg=$1
|
|
|
|
rm_out=$(repo-remove /var/cache/pacman/custom/custom.db.tar "$pkg" 2>&1)
|
|
|
|
if [[ $rm_out = *"ERROR"* ]]; then
|
|
|
|
echo "not found" >&2
|
|
|
|
else
|
|
|
|
rm -rf /var/cache/pacman/custom/"$pkg"*.pkg.* || true
|
|
|
|
echo "$pkg removed"
|
|
|
|
fi
|
|
|
|
sudo pacman -Sy
|
|
|
|
sudo pacman -Rnc "$pkg"
|
|
|
|
}
|
|
|
|
|
|
|
|
function aurupdate {
|
|
|
|
aur sync --no-view --no-confirm --database custom -u
|
|
|
|
sudo pacman -Syu
|
|
|
|
}
|
|
|
|
|
2019-09-01 14:40:03 +03:00
|
|
|
function c {
|
|
|
|
echo "scale=2; $@" | bc
|
|
|
|
}
|
|
|
|
|
2019-06-09 17:14:30 +03:00
|
|
|
function aurls {
|
|
|
|
sudo pacman -Sl custom
|
|
|
|
}
|
2021-04-27 23:25:21 +03:00
|
|
|
#source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
|
|
|
|
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
|
|
#[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|