Browse Source

Merge branch 'master' of github.com:10sr/dotfiles

pull/1/head
10sr 11 years ago
parent
commit
95f1da6804
7 changed files with 218 additions and 207 deletions
  1. +1
    -0
      _keysnail.js
  2. +7
    -1
      bashrc
  3. +0
    -0
      conf/tint2rc
  4. +201
    -200
      emacs.el
  5. +2
    -0
      gitignore
  6. +6
    -2
      setup.sh
  7. +1
    -4
      tmux.conf

+ 1
- 0
_keysnail.js View File

@@ -312,6 +312,7 @@ ext.add('my-setpref', function(){
"extensions.yass.edgetype":0, "extensions.yass.edgetype":0,
"extensions.yass.selectedpreset":"red", "extensions.yass.selectedpreset":"red",
"font.default.x-western":"sans-serif", "font.default.x-western":"sans-serif",
"gecko.handlerService.schemes.mailto.1.name":"Gmail",
"general.warnOnAboutConfig":false, "general.warnOnAboutConfig":false,
"keyword.URL":"http://www.bing.com/search?q=", "keyword.URL":"http://www.bing.com/search?q=",
"network.dns.disableIPv6":true, "network.dns.disableIPv6":true,


+ 7
- 1
bashrc View File

@@ -79,7 +79,6 @@ _tmux_prefs(){


iswindows && alias tty="echo cmd.exe" iswindows && alias tty="echo cmd.exe"
type fortune >/dev/null 2>&1 && { type fortune >/dev/null 2>&1 && {
echo
fortune fortune
echo echo
fortune -o fortune -o
@@ -112,6 +111,7 @@ null type vim && alias vi=vim
alias pstree="LANG=C pstree" alias pstree="LANG=C pstree"
alias cp="cp -v" alias cp="cp -v"
alias mv="mv -v" alias mv="mv -v"
alias rm="rm -v"
alias psaux="ps auxww" alias psaux="ps auxww"
alias q=exit alias q=exit
alias e3=e3em alias e3=e3em
@@ -381,6 +381,12 @@ mkcd(){
cd $1 cd $1
} }


if test -n "$TMUX" && null type reattach-to-user-namespace
then
alias pbpaste="reattach-to-user-namespace pbpaste"
alias pbcopy="reattach-to-user-namespace pbcopy"
fi

catclip(){ catclip(){
if iswindows if iswindows
then then


tint2rc → conf/tint2rc View File


+ 201
- 200
emacs.el View File

@@ -90,11 +90,8 @@ otherwise the path where the library installed."
(and (fboundp 'set-scroll-bar-mode) (and (fboundp 'set-scroll-bar-mode)
(set-scroll-bar-mode nil)) (set-scroll-bar-mode nil))
(add-hook 'kill-emacs-hook (add-hook 'kill-emacs-hook
;; load when exitting to examine if file is written properly
(lambda ()
(when (file-readable-p "~/.emacs")
(load-file "~/.emacs"))
))
;; load init file when terminating emacs to ensure file is not broken
'reload-init-file)


(add-hook 'after-init-hook (add-hook 'after-init-hook
(lambda () (lambda ()
@@ -112,10 +109,6 @@ otherwise the path where the library installed."


;; my prefix map ;; my prefix map
(define-prefix-command 'my-prefix-map) (define-prefix-command 'my-prefix-map)
'(add-hook 'after-init-hook
(lambda ()
(define-key ctl-x-map (kbd "C-x") 'my-prefix-map)
))
(define-key ctl-x-map (kbd "C-x") 'my-prefix-map) (define-key ctl-x-map (kbd "C-x") 'my-prefix-map)
(define-key my-prefix-map (kbd "C-q") 'quoted-insert) (define-key my-prefix-map (kbd "C-q") 'quoted-insert)
(define-key my-prefix-map (kbd "C-z") 'suspend-frame) (define-key my-prefix-map (kbd "C-z") 'suspend-frame)
@@ -137,6 +130,18 @@ otherwise the path where the library installed."
(setq ring-bell-function 'ignore) (setq ring-bell-function 'ignore)
(mouse-avoidance-mode 'banish) (mouse-avoidance-mode 'banish)


(and window-system
(dllib-if-unfound
"https://raw.github.com/10sr/emacs-lisp/master/save-window-size.el"
t)
(require 'save-window-size nil t))

(defun reload-init-file ()
"Reload emacs init file."
(interactive)
(when (file-readable-p user-init-file)
(load-file user-init-file)))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; global keys ;; global keys


@@ -145,21 +150,12 @@ otherwise the path where the library installed."
(global-set-key (kbd "<left>") 'scroll-down) (global-set-key (kbd "<left>") 'scroll-down)
(global-set-key (kbd "<right>") 'scroll-up) (global-set-key (kbd "<right>") 'scroll-up)


(define-key my-prefix-map (kbd "C-o") 'occur)

;; (define-key my-prefix-map (kbd "C-h") help-map) ;; (define-key my-prefix-map (kbd "C-h") help-map)
(global-set-key (kbd "C-\\") help-map) (global-set-key (kbd "C-\\") help-map)
(define-key ctl-x-map (kbd "DEL") help-map) (define-key ctl-x-map (kbd "DEL") help-map)
(define-key ctl-x-map (kbd "C-h") help-map) (define-key ctl-x-map (kbd "C-h") help-map)
(define-key help-map "a" 'apropos) (define-key help-map "a" 'apropos)


;; compose window
(global-set-key [?\C--] 'other-window)
(global-set-key [?\C-0] 'delete-window)
(global-set-key [?\C-1] 'delete-other-windows)
(global-set-key [?\C-2] 'split-window-vertically)
(global-set-key [?\C-3] 'split-window-horizontally)

;; disable annoying keys ;; disable annoying keys
(global-set-key [prior] 'ignore) (global-set-key [prior] 'ignore)
(global-set-key (kbd "<next>") 'ignore) (global-set-key (kbd "<next>") 'ignore)
@@ -292,8 +288,11 @@ otherwise the path where the library installed."


(fset 'yes-or-no-p 'y-or-n-p) (fset 'yes-or-no-p 'y-or-n-p)


(define-key read-expression-map (kbd "TAB") 'lisp-complete-symbol)
;; complete symbol when `eval' ;; complete symbol when `eval'
(define-key read-expression-map (kbd "TAB") 'lisp-complete-symbol)

(define-key minibuffer-local-map (kbd "C-u")
(lambda () (interactive) (delete-region (point-at-bol) (point))))


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; letters, font-lock mode and fonts ;; letters, font-lock mode and fonts
@@ -440,6 +439,10 @@ otherwise the path where the library installed."
(if (face-inverse-video-p 'mode-line) fg bg)) (if (face-inverse-video-p 'mode-line) fg bg))
(set-face-foreground 'mode-line-inactive (set-face-foreground 'mode-line-inactive
(if (face-inverse-video-p 'mode-line) bg fg))) (if (face-inverse-video-p 'mode-line) bg fg)))
(set-face-underline-p 'mode-line-inactive
t)
(set-face-underline-p 'vertical-border
nil)


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; file handling ;; file handling
@@ -471,8 +474,30 @@ otherwise the path where the library installed."
(add-hook 'after-save-hook (add-hook 'after-save-hook
'executable-make-buffer-file-executable-if-script-p) 'executable-make-buffer-file-executable-if-script-p)


(setq bookmark-default-file "~/.emacs.d/bmk")

(and (dllib-if-unfound
"https://github.com/10sr/emacs-lisp/raw/master/read-only-only-mode.el"
t)
(require 'read-only-only-mode nil t))

(and (dllib-if-unfound
"https://raw.github.com/10sr/emacs-lisp/master/smart-revert.el"
t)
(require 'smart-revert nil t)
(smart-revert-on)
)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; editting ;; editting

(defun my-copy-whole-line ()
""
(interactive)
(kill-new (concat (buffer-substring (point-at-bol)
(point-at-eol))
"\n")))

(setq require-final-newline t) (setq require-final-newline t)
(setq kill-whole-line t) (setq kill-whole-line t)
(setq scroll-conservatively 35 (setq scroll-conservatively 35
@@ -515,20 +540,17 @@ otherwise the path where the library installed."
(global-set-key (kbd "C-h") (kbd "DEL")) (global-set-key (kbd "C-h") (kbd "DEL"))


(global-set-key (kbd "C-m") 'reindent-then-newline-and-indent) (global-set-key (kbd "C-m") 'reindent-then-newline-and-indent)
(global-set-key (kbd "C-o")
;; (lambda ()
;; (interactive)
;; (move-end-of-line nil)
;; (newline-and-indent))
(kbd "C-e C-m")
)
;(global-set-key (kbd "C-k") 'kill-whole-line)
(global-set-key (kbd "M-k") 'my-copy-whole-line)
(global-set-key (kbd "C-o") (kbd "C-e C-m"))

(define-key esc-map "k" 'my-copy-whole-line)
;; (global-set-key "\C-z" 'undo) ; undo is M-u ;; (global-set-key "\C-z" 'undo) ; undo is M-u
(global-set-key (kbd "M-u") 'undo)
(global-set-key (kbd "C-r") 'query-replace-regexp)
(define-key esc-map "u" 'undo)
(define-key esc-map "i" (kbd "ESC TAB"))
;(global-set-key (kbd "C-r") 'query-replace-regexp)
(global-set-key (kbd "C-s") 'isearch-forward-regexp) (global-set-key (kbd "C-s") 'isearch-forward-regexp)
(global-set-key (kbd "M-i") (kbd "ESC TAB"))
(global-set-key (kbd "C-r") 'isearch-backward-regexp)

(define-key my-prefix-map (kbd "C-o") 'occur)


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; gmail ;; gmail
@@ -557,6 +579,14 @@ otherwise the path where the library installed."
(substitute-key-definition 'kill-buffer 'my-query-kill-this-buffer global-map) (substitute-key-definition 'kill-buffer 'my-query-kill-this-buffer global-map)
;;(global-set-key "\C-xk" 'my-query-kill-this-buffer) ;;(global-set-key "\C-xk" 'my-query-kill-this-buffer)


(defun my-kill-buffers ()
""
(interactive)
(mapcar (lambda (buf)
(when (buffer-file-name buf)
(kill-buffer buf)))
(buffer-list)))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; share clipboard with x ;; share clipboard with x


@@ -578,7 +608,9 @@ otherwise the path where the library installed."
"https://raw.github.com/10sr/emacs-lisp/master/pasteboard.el" "https://raw.github.com/10sr/emacs-lisp/master/pasteboard.el"
t) t)
(require 'pasteboard nil t) (require 'pasteboard nil t)
(turn-on-pasteboard))
(turn-on-pasteboard)
(getenv "TMUX")
(pasteboard-enable-rtun))


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; package ;; package
@@ -595,21 +627,75 @@ otherwise the path where the library installed."


(require 'sudoku nil t) (require 'sudoku nil t)


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; window

;; compose window
(global-set-key [?\C--] 'other-window)
(global-set-key [?\C-0] 'delete-window)
(global-set-key [?\C-1] 'delete-other-windows)
(global-set-key [?\C-2] 'split-window-vertically)
(global-set-key [?\C-3] 'split-window-horizontally)

;; forked from http://d.hatena.ne.jp/khiker/20100119/window_resize
(define-key my-prefix-map (kbd "C-w") 'my-window-organizer)

(defun my-window-organizer ()
"Control window size and position."
(interactive)
(save-selected-window
(select-window (window-at 0 0))
(let ( ;; (window-obj (selected-window))
;; (current-width (window-width))
;; (current-height (window-height))
action
c)
(catch 'end-flag
(while t
(setq action
(read-key-sequence-vector
(format "size[%dx%d] 1: maximize; 2, 3: split; 0: \
delete; o: select other; j, l: enlarge; h, k: shrink; q: quit."
(window-width)
(window-height))))
(setq c (aref action 0))
(cond ((= c ?l)
(unless (eq (window-width) (frame-width))
(enlarge-window-horizontally 1)))
((= c ?h)
(unless (eq (window-width) (frame-width))
(shrink-window-horizontally 1)))
((= c ?j)
(enlarge-window 1))
((= c ?k)
(shrink-window 1))
((= c ?o)
(other-window 1))
((memq c '(?d ?0))
(unless (eq (selected-window)
(next-window (selected-window) 0 1))
(delete-window (selected-window))))
((= c ?1)
(delete-other-windows))
((= c ?2)
(split-window-vertically))
((= c ?3)
(split-window-horizontally))
((memq c '(?q ?\C-g))
(message "Quit")
(throw 'end-flag t))
(t
(beep))))))))
;; (aref (read-key-sequence-vector "aa") 0)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; some modes and hooks ;; some modes and hooks


(require 'simple nil t) (require 'simple nil t)


(and window-system
(dllib-if-unfound
"https://raw.github.com/10sr/emacs-lisp/master/save-window-size.el"
t)
(require 'save-window-size nil t))

(and (dllib-if-unfound
"https://github.com/10sr/emacs-lisp/raw/master/read-only-only-mode.el"
t)
(require 'read-only-only-mode nil t))
(add-hook 'makefile-mode-hook
(lambda ()
(define-key makefile-mode-map (kbd "C-m") 'newline-and-indent)))


(defun make () (defun make ()
"Run \"make -k\" in current directory." "Run \"make -k\" in current directory."
@@ -673,51 +759,18 @@ otherwise the path where the library installed."
(setq auto-mode-alist (append '(("PKGBUILD\\'" . pkgbuild-mode)) (setq auto-mode-alist (append '(("PKGBUILD\\'" . pkgbuild-mode))
auto-mode-alist))) auto-mode-alist)))


(setq python-python-command (or (executable-find "python3")
(executable-find "python")))
(defun my-python-run-as-command ()
""
(interactive)
(shell-command (concat python-python-command " " buffer-file-name)))
(defun my-python-display-python-buffer ()
""
(interactive)
(set-window-text-height (display-buffer python-buffer
t)
7))
(add-hook 'python-mode-hook
(lambda ()
(define-key python-mode-map
(kbd "C-c C-e") 'my-python-run-as-command)
(define-key python-mode-map
(kbd "C-c C-b") 'my-python-display-python-buffer)
(define-key python-mode-map (kbd "C-m") 'newline-and-indent)))

(add-hook 'inferior-python-mode-hook
(lambda ()
(my-python-display-python-buffer)
(define-key inferior-python-mode-map
(kbd "<up>") 'comint-previous-input)
(define-key inferior-python-mode-map
(kbd "<down>") 'comint-next-input)))

(add-hook 'text-mode-hook (add-hook 'text-mode-hook
(lambda () (lambda ()
(define-key text-mode-map (kbd "C-m") 'newline))) (define-key text-mode-map (kbd "C-m") 'newline)))


(add-to-list 'Info-default-directory-list (expand-file-name "~/.info/emacs-ja")) (add-to-list 'Info-default-directory-list (expand-file-name "~/.info/emacs-ja"))


(setq bookmark-default-file "~/.emacs.d/bmk")

(add-hook 'apropos-mode-hook (add-hook 'apropos-mode-hook
(lambda () (lambda ()
(define-key apropos-mode-map "n" 'next-line) (define-key apropos-mode-map "n" 'next-line)
(define-key apropos-mode-map "p" 'previous-line) (define-key apropos-mode-map "p" 'previous-line)
)) ))


(define-key minibuffer-local-map (kbd "C-u")
(lambda () (interactive) (delete-region (point-at-bol) (point))))

(add-hook 'isearch-mode-hook (add-hook 'isearch-mode-hook
(lambda () (lambda ()
;; (define-key isearch-mode-map ;; (define-key isearch-mode-map
@@ -841,18 +894,44 @@ otherwise the path where the library installed."
(require 'git-command nil t) (require 'git-command nil t)
(define-key ctl-x-map "g" 'git-command)) (define-key ctl-x-map "g" 'git-command))


(and (dllib-if-unfound
"https://raw.github.com/10sr/emacs-lisp/master/smart-revert.el"
t)
(require 'smart-revert nil t)
(smart-revert-on)
)

(and (dllib-if-unfound (and (dllib-if-unfound
"http://www.emacswiki.org/emacs/download/sl.el" "http://www.emacswiki.org/emacs/download/sl.el"
t) t)
(require 'sl nil t)) (require 'sl nil t))


(defalias 'qcalc 'quick-calc)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; python

(setq python-python-command (or (executable-find "python3")
(executable-find "python")))
(defun my-python-run-as-command ()
""
(interactive)
(shell-command (concat python-python-command " " buffer-file-name)))
(defun my-python-display-python-buffer ()
""
(interactive)
(set-window-text-height (display-buffer python-buffer
t)
7))
(add-hook 'python-mode-hook
(lambda ()
(define-key python-mode-map
(kbd "C-c C-e") 'my-python-run-as-command)
(define-key python-mode-map
(kbd "C-c C-b") 'my-python-display-python-buffer)
(define-key python-mode-map (kbd "C-m") 'newline-and-indent)))

(add-hook 'inferior-python-mode-hook
(lambda ()
(my-python-display-python-buffer)
(define-key inferior-python-mode-map
(kbd "<up>") 'comint-previous-input)
(define-key inferior-python-mode-map
(kbd "<down>") 'comint-next-input)))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; GNU GLOBAL(gtags) ;; GNU GLOBAL(gtags)
;; http://uguisu.skr.jp/Windows/gtags.html ;; http://uguisu.skr.jp/Windows/gtags.html
@@ -1089,16 +1168,19 @@ otherwise the path where the library installed."
recentf-show-file-shortcuts-flag nil) recentf-show-file-shortcuts-flag nil)


(when (require 'recentf nil t) (when (require 'recentf nil t)
(add-hook 'recentf-mode-hook
'recentf-save-list)
(recentf-mode 1) (recentf-mode 1)
(add-to-list 'recentf-exclude (regexp-quote recentf-save-file)) (add-to-list 'recentf-exclude (regexp-quote recentf-save-file))
(define-key ctl-x-map (kbd "C-r") 'recentf-open-files) (define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
(add-hook 'find-file-hook (add-hook 'find-file-hook
'recentf-save-list 'recentf-save-list
t) ; save to file immediately after adding file to recentf list t) ; save to file immediately after adding file to recentf list
(add-hook 'kill-emacs-hook
'recentf-load-list)
;; (add-hook 'find-file-hook ;; (add-hook 'find-file-hook
;; (lambda () ;; (lambda ()
;; (recentf-add-file default-directory))) ;; (recentf-add-file default-directory)))
;; (add-to-list 'recentf-filename-handlers 'abbreviate-file-name)
(and (dllib-if-unfound (and (dllib-if-unfound
"https://raw.github.com/10sr/emacs-lisp/master/recentf-show.el" "https://raw.github.com/10sr/emacs-lisp/master/recentf-show.el"
t) t)
@@ -1542,31 +1624,17 @@ if arg given, use that eshell buffer, otherwise make new eshell buffer."
; ("ll" "ls -l $*") ; ("ll" "ls -l $*")
; ("la" "ls -a $*") ; ("la" "ls -a $*")
; ("lla" "ls -al $*") ; ("lla" "ls -al $*")
("ut" "slogin 03110414@un001.ecc.u-tokyo.ac.jp $*")
("aptin" "apt-get install $*") ("aptin" "apt-get install $*")
("eless" ("eless"
"cat >>> (with-current-buffer \
(get-buffer-create \"*eshell output\") \
(erase-buffer) \
(setq buffer-read-only nil) \
(current-buffer));\
(view-buffer (get-buffer \"*eshell output*\"))")
(concat "cat >>> (with-current-buffer "
"(get-buffer-create \"*eshell output\") "
"(erase-buffer) "
"(setq buffer-read-only nil) "
"(current-buffer)) "
"(view-buffer (get-buffer \"*eshell output*\"))")
("g" "git $*") ("g" "git $*")
)) ))
))

;; (eval-after-load "em-alias"
;; '(progn ;; (eshell/alias "ll" "ls -l")
;; ;; (eshell/alias "la" "ls -a")
;; ;; (eshell/alias "lla" "ls -al")
;; (eshell/alias "sgcc" (if (eq system-type 'windows-nt)
;; "gcc -o win.$1.exe $1"
;; "gcc -o ${uname}.$1.out $1"))
;; (eshell/alias "slmgcc" (if (eq system-type 'windows-nt)
;; "gcc -lm -o win.$1.exe $1"
;; "gcc -lm -o ${uname}.$1.out $1"))
;; ;; (eshell/alias "ut" "ssh g841105@un001.ecc.u-tokyo.ac.jp")
;; (add-to-list 'recentf-exclude (concat eshell-directory-name "alias"))))
)))


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; get last modified date ;; get last modified date
@@ -1702,7 +1770,7 @@ if arg given, use that eshell buffer, otherwise make new eshell buffer."
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; auto saving ;; auto saving


(defun my-save-this-buffer (silent-p)
(defun my-save-current-buffer (silent-p)
"save current buffer if can without asking" "save current buffer if can without asking"
(let ((cm (if (current-message) (let ((cm (if (current-message)
(format "%s\n" (current-message)) (format "%s\n" (current-message))
@@ -1740,45 +1808,25 @@ if arg given, use that eshell buffer, otherwise make new eshell buffer."
;; (file-writable-p buffer-file-name)) ;; (file-writable-p buffer-file-name))
;; (save-buffer))) ; silent one ;; (save-buffer))) ; silent one


(defvar my-auto-save-this-buffer nil "auto save timer object")
(defvar my-auto-save-current-buffer nil "auto save timer object")


(defun my-auto-save-this-buffer (sec &optional silent-p)
(defun my-auto-save-current-buffer (sec &optional silent-p)
"auto save current buffer if idle for SEC. "auto save current buffer if idle for SEC.
when SEC is nil, stop auto save if enabled." when SEC is nil, stop auto save if enabled."
(if sec (if sec
(progn (when my-auto-save-this-buffer
(cancel-timer my-auto-save-this-buffer)
(setq my-auto-save-this-buffer nil))
(setq my-auto-save-this-buffer
(run-with-idle-timer sec t 'my-save-this-buffer silent-p)))
(when my-auto-save-this-buffer
(cancel-timer my-auto-save-this-buffer)
(setq my-auto-save-this-buffer nil))))
(progn (when my-auto-save-current-buffer
(cancel-timer my-auto-save-current-buffer)
(setq my-auto-save-current-buffer nil))
(setq my-auto-save-current-buffer
(run-with-idle-timer sec t 'my-save-current-buffer silent-p)))
(when my-auto-save-current-buffer
(cancel-timer my-auto-save-current-buffer)
(setq my-auto-save-current-buffer nil))))


(my-auto-save-this-buffer 2 t)
(my-auto-save-current-buffer 2 t)


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; misc funcs

(defun dir-show (&optional dir)
(interactive)
(let ((bf (get-buffer-create "*dir show*"))
(list-directory-brief-switches "-C"))
(with-current-buffer bf
(list-directory (or nil
default-directory)
nil))
))

(defalias 'qcalc 'quick-calc)

(defun my-kill-buffers ()
""
(interactive)
(mapcar (lambda (buf)
(when (buffer-file-name buf)
(kill-buffer buf)))
(buffer-list)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; x open


(defvar my-filer nil) (defvar my-filer nil)
(setq my-filer (or (executable-find "pcmanfm") (setq my-filer (or (executable-find "pcmanfm")
@@ -1801,6 +1849,19 @@ when SEC is nil, stop auto save if enabled."
;; (recentf-add-file file) ;; (recentf-add-file file)
(message "Opening %s...done" file)) (message "Opening %s...done" file))


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; misc funcs

(defun dir-show (&optional dir)
(interactive)
(let ((bf (get-buffer-create "*dir show*"))
(list-directory-brief-switches "-C"))
(with-current-buffer bf
(list-directory (or nil
default-directory)
nil))
))

(defun my-keyboard-quit () (defun my-keyboard-quit ()
"" ""
(interactive) (interactive)
@@ -1825,13 +1886,6 @@ this is test, does not rename files"
(interactive) (interactive)
(shell-command "convmv -r -f sjis -t utf8 * --notest")) (shell-command "convmv -r -f sjis -t utf8 * --notest"))


(defun my-copy-whole-line ()
""
(interactive)
(kill-new (concat (buffer-substring (point-at-bol)
(point-at-eol))
"\n")))

(defun kill-ring-save-buffer-file-name () (defun kill-ring-save-buffer-file-name ()
"get current filename" "get current filename"
(interactive) (interactive)
@@ -1841,62 +1895,9 @@ this is test, does not rename files"
(message file)) (message file))
(message "not visiting file.")))) (message "not visiting file."))))


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; forked from http://d.hatena.ne.jp/khiker/20100119/window_resize
(define-key my-prefix-map (kbd "C-w") 'my-window-organizer)

(defun my-window-organizer ()
"Control window size and position."
(interactive)
(save-selected-window
(select-window (window-at 0 0))
(let ( ;; (window-obj (selected-window))
;; (current-width (window-width))
;; (current-height (window-height))
action
c)
(catch 'end-flag
(while t
(setq action
(read-key-sequence-vector
(format "size[%dx%d] 1: maximize; 2, 3: split; 0: \
delete; o: select other; j, l: enlarge; h, k: shrink; q: quit."
(window-width)
(window-height))))
(setq c (aref action 0))
(cond ((= c ?l)
(unless (eq (window-width) (frame-width))
(enlarge-window-horizontally 1)))
((= c ?h)
(unless (eq (window-width) (frame-width))
(shrink-window-horizontally 1)))
((= c ?j)
(enlarge-window 1))
((= c ?k)
(shrink-window 1))
((= c ?o)
(other-window 1))
((memq c '(?d ?0))
(unless (eq (selected-window)
(next-window (selected-window) 0 1))
(delete-window (selected-window))))
((= c ?1)
(delete-other-windows))
((= c ?2)
(split-window-vertically))
((= c ?3)
(split-window-horizontally))
((memq c '(?q ?\C-g))
(message "Quit")
(throw 'end-flag t))
(t
(beep))))))))
;; (aref (read-key-sequence-vector "aa") 0)


;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;; emacsを殺伐とさせる
;; ;; 補完させるとき失敗するからなし
;; ;; savage emacs
;; ;; when enabled emacs fails to complete
;; ;; http://e-arrows.sakura.ne.jp/2010/05/emacs-should-be-more-savage.html ;; ;; http://e-arrows.sakura.ne.jp/2010/05/emacs-should-be-more-savage.html
;; (defadvice message (before message-for-stupid (arg &rest arg2) activate) ;; (defadvice message (before message-for-stupid (arg &rest arg2) activate)
;; (setq arg ;; (setq arg


+ 2
- 0
gitignore View File

@@ -8,3 +8,5 @@ GPATH
GRTAGS GRTAGS
GSYMS GSYMS
GTAGS GTAGS

*.o

+ 6
- 2
setup.sh View File

@@ -56,7 +56,7 @@ git_config(){
git config --global status.relativePaths false git config --global status.relativePaths false
git config --global status.showUntrackedFiles normal git config --global status.showUntrackedFiles normal
git config --global log.date iso git config --global log.date iso
git config --global alias.graph "log --graph --date-order -C -M --pretty=tformat:\"<%h> %ad [%an] %Cgreen%d%Creset %s\" --all --date=iso -n 500"
git config --global alias.graph "log --graph --date-order -C -M --pretty=tformat:\"<%C(green)%h%C(reset)> %C(white)%ad%C(reset) [%C(red)%an%C(reset)] %C(yellow)%d%C(reset) %C(white bold)%s%C(reset)\" --all --date=iso -n 499"
git config --global alias.st "status -s -b" git config --global alias.st "status -s -b"
git config --global alias.b "branch" git config --global alias.b "branch"
git config --global alias.sb "show-branch" git config --global alias.sb "show-branch"
@@ -95,7 +95,11 @@ mac_defaults(){
mac_start_daemon(){ mac_start_daemon(){
test "`uname`" = Darwin || return 1 test "`uname`" = Darwin || return 1


sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
test "`launchctl getenv LC_ALL`" = C || sudo launchctl setenv LC_ALL C
if ! (launchctl list | grep com.apple.locate)
then
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
fi
} }


get_install_script http://www.frexx.de/xterm-256-notes/data/colortable16.sh \ get_install_script http://www.frexx.de/xterm-256-notes/data/colortable16.sh \


+ 1
- 4
tmux.conf View File

@@ -11,7 +11,7 @@ set -g base-index 1
set -g default-command /bin/bash set -g default-command /bin/bash
#set -g default-terminal screen-256color #set -g default-terminal screen-256color
#set -g default-terminal screen-16color #set -g default-terminal screen-16color
set default-path "$HOME" # not work as i expected
set default-path "${HOME}" # not work as i expected


#set -g status-left "" #set -g status-left ""
#set -g status-right "#H | %a, %d %b %Y %T %z #(tmux -V)" #set -g status-right "#H | %a, %d %b %Y %T %z #(tmux -V)"
@@ -30,9 +30,6 @@ if "test `hostname` = darwin-mba.local" \
if "test `hostname` = newkiwi" \ if "test `hostname` = newkiwi" \
"set -g status-bg magenta; set -g pane-active-border-fg magenta" "set -g status-bg magenta; set -g pane-active-border-fg magenta"


if "test -f /opt/local/bin/reattach-to-user-namespace" \
"set-option -g default-command '/opt/local/bin/reattach-to-user-namespace bash'"

# window-status-current # window-status-current
setw -g window-status-current-fg black setw -g window-status-current-fg black
setw -g window-status-current-bg white setw -g window-status-current-bg white


Loading…
Cancel
Save