Updated with extra bits from shakti
Getty Ritter
10 years ago
| 9 | 9 |
(setq default-tab-width 4)
|
| 10 | 10 |
(setq indent-tabs-mode nil)
|
| 11 | 11 |
|
| 12 |
(setq scheme-program-name "guile")
|
| 13 |
|
| 12 | 14 |
(if (not (getenv "BIG"))
|
| 13 | 15 |
(progn
|
| 14 | 16 |
(scroll-bar-mode 0)
|
|
| 34 | 36 |
:ensure t
|
| 35 | 37 |
:init (setq twittering-use-master-password t))
|
| 36 | 38 |
|
| 39 |
;; for redo syntax highlighting
|
| 40 |
(add-to-list 'auto-mode-alist '("\\.do\\'" . sh-mode))
|
| 41 |
|
| 37 | 42 |
|
| 38 | 43 |
|
| 39 | 44 |
|
| 1 | 1 |
# .bashrc
|
| 2 | |
|
| 3 | |
# Source global definitions
|
| 4 | |
if [ -f /etc/bashrc ]; then
|
| 5 | |
. /etc/bashrc
|
| 6 | |
fi
|
| 7 | |
|
| 8 | |
#cat <TODO
|
| 9 | |
#echo
|
| 10 | 2 |
|
| 11 | 3 |
# User specific aliases and functions
|
| 12 | 4 |
alias cl=clear
|
|
| 27 | 19 |
alias em='EVIL=true BARE=true emacs'
|
| 28 | 20 |
alias objdump='objdump -M intel'
|
| 29 | 21 |
alias pr-paper='lpr -P hp4200n -o number-up=2 -o sides=two-sided-long-edge'
|
| 30 | |
alias big-urxvt='urxvt -fn "xft:Inconsolata:pixelsize=24"'
|
| 22 |
alias bigterm='urxvt -fn "xft:Inconsolata:pixelsize=24"'
|
| 23 |
alias hex2raw="tr -d '\\\x' | xxd -r -p"
|
| 31 | 24 |
|
| 32 | 25 |
export EDITOR="emacs -nw"
|
| 33 | 26 |
export BASHFILESIZE=50000
|