From 888eb32095955b9a86aa983f39d6ef7a843202b3 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Tue, 4 May 2021 17:35:26 +0200 Subject: [PATCH] Remove system files --- .bashrc | 34 ---------------------------------- .profile | 45 --------------------------------------------- 2 files changed, 79 deletions(-) delete mode 100644 .bashrc delete mode 100644 .profile diff --git a/.bashrc b/.bashrc deleted file mode 100644 index bacf3596..00000000 --- a/.bashrc +++ /dev/null @@ -1,34 +0,0 @@ -# Sample .bashrc for SuSE Linux -# Copyright (c) SuSE GmbH Nuernberg - -# There are 3 different types of shells in bash: the login shell, normal shell -# and interactive shell. Login shells read ~/.profile and interactive shells -# read ~/.bashrc; in our setup, /etc/profile sources ~/.bashrc - thus all -# settings made here will also take effect in a login shell. -# -# NOTE: It is recommended to make language settings in ~/.profile rather than -# here, since multilingual X sessions would not work properly if LANG is over- -# ridden in every subshell. - -# 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 ALTERNATE_EDITOR="" -export EDITOR="emacsclient -t" # $EDITOR opens in terminal -#export VISUAL="emacs" # $VISUAL opens in GUI mode -#export VISUAL="emacsclient -c -a emacs" # $VISUAL opens in GUI mode -#export EDITOR=/usr/bin/vim -#export EDITOR=/usr/bin/mcedit - -# For some news readers it makes sense to specify the NEWSSERVER variable here -#export NEWSSERVER=your.news.server - -# If you want to use a Palm device with Linux, uncomment the two lines below. -# For some (older) Palm Pilots, you might need to set a lower baud rate -# e.g. 57600 or 38400; lowest is 9600 (very slow!) -# -#export PILOTPORT=/dev/pilot -#export PILOTRATE=115200 - -export TERM="screen-256color" -test -s ~/.alias && . ~/.alias || true -eval "$(direnv hook bash)" diff --git a/.profile b/.profile deleted file mode 100644 index 35672dfd..00000000 --- a/.profile +++ /dev/null @@ -1,45 +0,0 @@ -# Sample .profile for SuSE Linux -# rewritten by Christian Steinruecken -# -# 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 -export LANG=en_US.UTF-8 -export LC_ALL=en_US.UTF-8 -# 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 - -# set PATH so it includes user's private bin if it exists -if [ -d "$HOME/bin" ] ; then - PATH="$HOME/bin:$PATH" -fi - -# set PATH so it includes user's private bin if it exists -if [ -d "$HOME/.local/bin" ] ; then - PATH="$HOME/.local/bin:$PATH" -fi - -export PATH="$PATH:$HOME/.npm-packages/bin" -export PATH="$PATH:/usr/local/go/bin" -export PATH="$PATH:$HOME/go/bin" - -source ~/.apikeys -source "$HOME/.cargo/env"