mirror of https://github.com/harish2704/dotFiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
792 B
17 lines
792 B
# Sample .bashrc for SUSE Linux
|
|
# Copyright (c) SUSE Software Solutions Germany GmbH
|
|
|
|
# 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.
|
|
|
|
test -s ~/.alias && . ~/.alias || true
|
|
|
|
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;33m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
export PATH="$HOME/node_modules/.bin:$PATH"
|
|
|