mirror of
https://github.com/johndoe6345789/SparkOS.git
synced 2026-04-24 13:34:56 +00:00
14 lines
191 B
Bash
14 lines
191 B
Bash
# SparkOS Root Bash Configuration
|
|
|
|
# Set prompt
|
|
PS1='SparkOS:\w# '
|
|
|
|
# Aliases
|
|
alias ls='ls --color=auto'
|
|
alias ll='ls -lah'
|
|
alias ..='cd ..'
|
|
|
|
# Environment
|
|
export EDITOR=vi
|
|
export PAGER=less
|