Verified Commit f9cb796d authored by Hermann Mayer's avatar Hermann Mayer
Browse files

BashRC: Fixed a htop issue while using a different TERM var. VimRC: Added a personal wiki tooling.

parent 692c33a9
Loading
Loading
Loading
Loading
+11 −11
Original line number Diff line number Diff line
@@ -82,14 +82,6 @@ if [ -f "${BASHRC_CONFIG}/exports.conf" ]; then
    source "${BASHRC_CONFIG}/exports.conf"
fi

# +-------------------------------------------------
# | Addons
# +-------------------------------------------------

if [ -f "${BASHRC_CONFIG}/addons.sh" ]; then
    source "${BASHRC_CONFIG}/addons.sh"
fi

# +-------------------------------------------------
# | Non-Interactive Shell
# +-------------------------------------------------
@@ -120,9 +112,9 @@ fi
# | UTF8 Stuff
# +-------------------------------------------------

export LC_ALL=de_DE.UTF-8
export LANG=de_DE.UTF-8
export LANGUAGE=de_DE.UTF-8
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8

if test -t 1 -a -t 2 ; then
    echo -n -e '\033%G'
@@ -150,6 +142,14 @@ do
    fi
done

# +-------------------------------------------------
# | Addons
# +-------------------------------------------------

if [ -f "${BASHRC_CONFIG}/addons.sh" ]; then
    source "${BASHRC_CONFIG}/addons.sh"
fi

# +-------------------------------------------------
# | Binding Bash Events
# +-------------------------------------------------

dotrc/.fonts/.uuid

0 → 100644
+1 −0
Original line number Diff line number Diff line
67cf578d-a0ba-4bec-91c7-7e856bc0e9af
 No newline at end of file
+14.1 KiB

File added.

No diff preview for this file type.

+74.1 KiB

File added.

No diff preview for this file type.

+5 −0
Original line number Diff line number Diff line
#!/bin/bash

export PATH="${PATH}:`ls -d1 ${HOME}/.gem/ruby/*/bin | paste -sd ':'`"

html2haml --erb --ruby19-attributes --stdin
Loading