Remove outdated files

This commit is contained in:
Arne Keller 2021-03-23 17:47:07 +01:00
parent a61928b947
commit 4bcab57859
4 changed files with 0 additions and 117 deletions

View File

@ -1,14 +0,0 @@
# Setup fzf
# ---------
if [[ ! "$PATH" == */home/arne/.config/fzf/bin* ]]; then
export PATH="$PATH:/home/arne/.config/fzf/bin"
fi
# Auto-completion
# ---------------
[[ $- == *i* ]] && source "/home/arne/.config/fzf/shell/completion.zsh" 2> /dev/null
# Key bindings
# ------------
source "/home/arne/.config/fzf/shell/key-bindings.zsh"

View File

@ -1,30 +0,0 @@
# Sample .profile for SuSE Linux
# rewritten by Christian Steinruecken <cstein@suse.de>
#
# This file is read each time a login shell is started.
# All other interactive shells will only read .bashrc; this is particularly
# important for language settings, see below.
test -z "$PROFILEREAD" && . /etc/profile || true
# Most applications support several languages for their output.
# To make use of this feature, simply uncomment one of the lines below or
# add your own one (see /usr/share/locale/locale.alias for more codes)
# This overwrites the system default set in /etc/sysconfig/language
# in the variable RC_LANG.
#
#export LANG=de_DE.UTF-8 # uncomment this line for German output
#export LANG=fr_FR.UTF-8 # uncomment this line for French output
#export LANG=es_ES.UTF-8 # uncomment this line for Spanish output
# Some people don't like fortune. If you uncomment the following lines,
# you will have a fortune each time you log in ;-)
#if [ -x /usr/bin/fortune ] ; then
# echo
# /usr/bin/fortune
# echo
#fi
export PATH="$HOME/.cargo/bin:$PATH"

View File

@ -1,3 +0,0 @@
export LANG=de_DE.utf8
export GOOGLE_APPLICATION_CREDENTIALS=$HOME/.config/GoogleAPI/client_secrets.json
export PATH="$HOME/.local/bin:$HOME/.cargo/bin:$PATH"

70
.zshrc
View File

@ -1,70 +0,0 @@
export LANG=en_US.utf8
export RUST_SRC_PATH=$HOME/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/src
export NPM_PACKAGES="${HOME}/.local/share/npm"
export PATH="$HOME/.gem/ruby/2.5.0/bin:$HOME/.local/share/npm/bin:$PATH"
export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH
alias ski="sk --ansi -c 'rg --color=always --line-number \"{}\"'"
alias ls-partitions="lsblk"
alias ls-network="sudo ss -lntup"
alias heroku=/opt/heroku/bin/heroku
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow -g "\!\{.git,node_modules\}/*" 2> /dev/null'
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=100000
SAVEHIST=1000000000
setopt APPEND_HISTORY # Dont erase history
setopt EXTENDED_HISTORY # Add additional data to history like timestamp
setopt INC_APPEND_HISTORY # Add immediately
setopt SHARE_HISTORY # Share history between session/terminals
bindkey -e
# End of lines configured by zsh-newuser-install
zstyle :compinstall filename '/home/arne/.zshrc'
. .local/bin/z.sh
source $HOME/.profilerc
bindkey "^[[1;5D" backward-word
bindkey "^[[1;5C" forward-word
autoload -Uz compinit
function mouse_around_rand {
while true; do
sleep "$1"
xdotool mousemove_relative -- $(($RANDOM % 10)) $(($RANDOM % 10))
xdotool mousemove_relative -- -$(($RANDOM % 10)) -$(($RANDOM % 10))
done
}
function git_github()
{
git config user.name FliegendeWurst
git config user.email 2012gdwu@web.de
git config user.signingkey CA38E82B54B32A88
git config commit.gpgsign true
}
function git_gitlab_ak()
{
git config --replace user.name Arne\ Keller
git config user.email arne.keller01@yahoo.de
git config commit.gpgsign false
}
function git_gitlab_sakuhl()
{
git config --replace user.name Sakuhl
git config user.email 2012collector@gmail.com
git config commit.gpgsign false
}
function git_wollwerk()
{
git config --replace user.name Arne\ Keller
git config user.email arne.keller01@yahoo.de
git config commit.gpgsign false
}