This commit is contained in:
Michael Moese 2025-07-25 14:19:20 +02:00
parent 07816eb302
commit 09d717fab8
63 changed files with 2945 additions and 34 deletions

1
bash/.alias Normal file
View file

@ -0,0 +1 @@
alias vim=nvim

View file

@ -12,12 +12,26 @@
test -s ~/.alias && . ~/.alias || true
#function set_perllib() {
# if [[ "$PWD" == "$HOME/work/os-autoinst-distri-opensuse"* ]]; then
# export PERL5LIB="$HOME/work/os-autoinst-distri-opensuse/lib"
# else
# unset PERL5LIB
# fi
#}
#PROMPT_COMMAND="set_perllib;$PROMPT_COMMAND"
export MOZ_ENABLE_WAYLAND=1
export QUTE_PASS_MENU=rofi
export TERMINAL=kitty
export EDITOR="emacs -nw"
export EDITOR="nvim"
export PATH="$PATH:/home/michael/bin/yubico-authenticator-7.2.3-linux"
eval "$(keychain --quiet --eval --agents ssh)"

25
bash/.profile Normal file
View file

@ -0,0 +1,25 @@
# 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
# Some applications read the EDITOR variable to determine your favourite text
# editor. So uncomment the line below and enter the editor of your choice :-)
export EDITOR=/usr/bin/vim
#export EDITOR=/usr/bin/mcedit
export MOZ_ENABLE_WAYLAND=1
# For some news readers it makes sense to specify the NEWSSERVER variable here
#export NEWSSERVER=your.news.server
# 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