blob: 938e44bd05480400b0f82e77a1459ff58f0168bd (
plain)
1 Not that any of you care that much, but I thought I might post my .bashrc file
2 as it evolves in case anyone is looking for something I have in mine. I have
3 made quite a few of them and ultimately end up cleaning them out entirely on
4 occasion to start over so I can keep it clean with only the things I need.
5
6 That said, here's what we've got so far. The initial contents at the top are
7 from the Arch Linux skel file.
8
9 I'll keep updating this as I make changes.
10
11 ----
12 #
13 # ~/.bashrc
14 #
15
16 # If not running interactively, don't do anything
17 [[ $- != *i* ]] && return
18
19 alias ls='ls --color=auto'
20 PS1='[\u@\h \W]\$ '
21
22 # My modifications
23 export TERM=xterm-256color
24
25 # This will spawn a new tmux instance as our "shell" if tmux isn't already
26 # running
27 if [[ -z $TMUX ]]; then
28 exec tmux
29 else
30 echo
31 fi
32 ----
33
34
35
36 Category:SSH
37 Category:Bash
38
39
40 // vim: set syntax=asciidoc:
|