Add .emacs and update bash_aliases from other desktop machine. Also include a copy of compiled stderred library.
This commit is contained in:
parent
f4eabbbf48
commit
51f965131d
|
@ -1,6 +1,10 @@
|
|||
export PATH=~/bin:$PATH
|
||||
export EDITOR=emacs -nw
|
||||
alias emacs="emacs -nw"
|
||||
export EDITOR=/usr/bin/emacs -nw
|
||||
export LD_PRELOAD="/home/anna/.local/lib64/stderred.so"
|
||||
|
||||
alias emacs="/usr/bin/emacs -nw"
|
||||
alias grep='LC_ALL="C" grep'
|
||||
alias bt='transmission-remote'
|
||||
|
||||
function fancy_ps1 () {
|
||||
local COLOR1="\033[1;32m"
|
||||
|
|
53
emacs
Executable file
53
emacs
Executable file
|
@ -0,0 +1,53 @@
|
|||
(custom-set-variables
|
||||
;; custom-set-variables was added by Custom -- don't edit or cut/paste it!
|
||||
;; Your init file should contain only one such instance.
|
||||
'(c-basic-offset 2)
|
||||
'(c-tab-always-indent t)
|
||||
'(canlock-password "201dd6597717bea7c6569288a099ce4c838cd1a7")
|
||||
'(case-fold-search t)
|
||||
'(current-language-environment "English")
|
||||
'(default-input-method "latin-1-prefix")
|
||||
'(global-font-lock-mode t nil (font-lock))
|
||||
'(make-backup-files nil)
|
||||
'(pc-select-meta-moves-sexps t)
|
||||
'(pc-select-selection-keys-only t)
|
||||
'(pc-selection-mode t t)
|
||||
'(php-file-patterns nil)
|
||||
'(show-paren-mode t nil (paren))
|
||||
'(transient-mark-mode t)
|
||||
'(version-control (quote never)))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
|
||||
;; Your init file should contain only one such instance.
|
||||
'(mmm-default-submode-face ((t nil))))
|
||||
(put 'narrow-to-region 'disabled nil)
|
||||
|
||||
;; *** User-added stuff *** ;;
|
||||
|
||||
;; General custom variables
|
||||
(setq require-final-newline 't)
|
||||
(set-language-environment "UTF-8")
|
||||
(iswitchb-mode 1)
|
||||
|
||||
;; Kill GUI elements
|
||||
(menu-bar-mode 0)
|
||||
(tool-bar-mode 0)
|
||||
(scroll-bar-mode -1)
|
||||
|
||||
;; *** Programming
|
||||
(global-set-key (kbd "C-x g") 'goto-line)
|
||||
(define-key global-map (kbd "<f5>") 'recompile)
|
||||
(setq-default indent-tabs-mode nil)
|
||||
(setq-default tab-width 2)
|
||||
|
||||
;; Git support
|
||||
(add-to-list 'load-path "/usr/share/doc/git-1.7.11.7/contrib/emacs")
|
||||
(require 'git)
|
||||
(require 'git-blame)
|
||||
|
||||
;; Markdown support (requires emacs-goodies)
|
||||
(autoload 'markdown-mode "markdown-mode"
|
||||
"Major mode for editing Markdown files" t)
|
||||
(add-to-list 'auto-mode-alist '("\\.text\\'" . markdown-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
|
BIN
local/lib64/stderred.so
Executable file
BIN
local/lib64/stderred.so
Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user