-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashrc_fedora
More file actions
39 lines (30 loc) · 901 Bytes
/
bashrc_fedora
File metadata and controls
39 lines (30 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment for both login and non-login shell.
# Enable Vi mode in Bash command line edit.
set -o vi
# Don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# For setting history length see HISTSIZE and HISTFILESIZE in bash(1)
# HISTSIZE=1000
HISTFILESIZE=2000
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# For the advanced merge option of rpmconf to work, set a capable editor.
export MERGE='vimdiff'
# User specific aliases and functions
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# if [ -d ~/.bashrc.d ]; then
# for rc in ~/.bashrc.d/*; do
# if [ -f "$rc" ]; then
# . "$rc"
# fi
# done
# fi
# unset rc