Skip to content

Commit

Permalink
Faster setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tototoshi committed Feb 10, 2014
1 parent 7f6b7f7 commit cd69546
Show file tree
Hide file tree
Showing 888 changed files with 570 additions and 4,080 deletions.
6 changes: 0 additions & 6 deletions .gitmodules

This file was deleted.

2 changes: 2 additions & 0 deletions alc.el
Expand Up @@ -26,3 +26,5 @@
(browse-url (alc-make-url
(cond ((string= arg "") (or (current-word) ""))
(t arg)))))

(provide 'alc)
20 changes: 20 additions & 0 deletions basic-config.el
Expand Up @@ -143,3 +143,23 @@
(setq display-time-format "[%T]")
(setq display-time-day-and-date t)
(display-time)

;; auto-highlight-symbol-mode
(require 'auto-highlight-symbol)
(require 'auto-highlight-symbol-config)
(global-auto-highlight-symbol-mode t)

;; bm
(require 'bm)
(setq-default bm-buffer-persistence nil)
(setq bm-restore-repository-on-load t)
(add-hook 'find-file-hook 'bm-buffer-restore)
(add-hook 'kill-buffer-hook 'bm-buffer-save)
(add-hook 'after-save-hook 'bm-buffer-save)
(add-hook 'after-revert-hook 'bm-buffer-restore)


;; occur
(defun occur-current-word ()
(interactive)
(occur (current-word)))
1 change: 1 addition & 0 deletions delete-line.el
Expand Up @@ -11,3 +11,4 @@

(global-set-key "\M-k" 'delete-line)

(provide 'delete-line)
2 changes: 0 additions & 2 deletions dired-config.el
Expand Up @@ -61,5 +61,3 @@ Optional prefix ARG says how many lines to move; default is one line."
(string-ends-with x "~"))))
(directory-files (dired-current-directory))))
(delete-file f)))


3 changes: 1 addition & 2 deletions init.el
@@ -1,5 +1,4 @@
(dolist (dir (split-string (shell-command-to-string "find ~/.emacs.d/ -type d") "\n"))
(add-to-list 'load-path dir))
(add-to-list 'load-path "~/.emacs.d/dotemacs/")
(load "my-init.el")
(load "my-keybind.el")
;; (set-frame-parameter nil 'alpha 50)
Expand Down
4 changes: 0 additions & 4 deletions install-dependencies.sh

This file was deleted.

0 comments on commit cd69546

Please sign in to comment.