Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Commit

Permalink
Split load smooth-scrolling in idle time.
Browse files Browse the repository at this point in the history
  • Loading branch information
manateelazycat committed Oct 6, 2014
1 parent 9106d26 commit 2d6c27a
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 2 deletions.
1 change: 0 additions & 1 deletion site-lisp/config/init-generic.el
Expand Up @@ -117,7 +117,6 @@
(setq one-key-popup-window nil) ;禁止自动弹出窗口
(add-hook 'find-file-hook 'highlight-parentheses-mode t) ;增强的括号高亮
(global-hl-line-mode 1) ;高亮当前行
(setq smooth-scroll-margin 2) ;触发滚动的行数
(setq isearch-allow-scroll t) ;isearch搜索时是可以滚动屏幕的
(setq byte-compile-warnings
(quote (
Expand Down
92 changes: 92 additions & 0 deletions site-lisp/config/init-smooth-scrolling.el
@@ -0,0 +1,92 @@
;;; init-smooth-scrolling.el --- Init for smooth-scrolling

;; Filename: init-smooth-scrolling.el
;; Description: Init for smooth-scrolling
;; Author: Andy Stewart <lazycat.manatee@gmail.com>
;; Maintainer: Andy Stewart <lazycat.manatee@gmail.com>
;; Copyright (C) 2014, Andy Stewart, all rights reserved.
;; Created: 2014-10-06 13:07:42
;; Version: 0.1
;; Last-Updated: 2014-10-06 13:07:42
;; By: Andy Stewart
;; URL: http://www.emacswiki.org/emacs/download/init-smooth-scrolling.el
;; Keywords:
;; Compatibility: GNU Emacs 24.4.50.1
;;
;; Features that might be required by this library:
;;
;;
;;

;;; This file is NOT part of GNU Emacs

;;; License
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
;; Floor, Boston, MA 02110-1301, USA.

;;; Commentary:
;;
;; Init for smooth-scrolling
;;

;;; Installation:
;;
;; Put init-smooth-scrolling.el to your load-path.
;; The load-path is usually ~/elisp/.
;; It's set in your ~/.emacs like this:
;; (add-to-list 'load-path (expand-file-name "~/elisp"))
;;
;; And the following to your ~/.emacs startup file.
;;
;; (require 'init-smooth-scrolling)
;;
;; No need more.

;;; Customize:
;;
;;
;;
;; All of the above can customize by:
;; M-x customize-group RET init-smooth-scrolling RET
;;

;;; Change log:
;;
;; 2014/10/06
;; * First released.
;;

;;; Acknowledgements:
;;
;;
;;

;;; TODO
;;
;;
;;

;;; Require

(require 'smooth-scrolling)

;;; Code:

(setq smooth-scroll-margin 2) ;触发滚动的行数

(provide 'init-smooth-scrolling)

;;; init-smooth-scrolling.el ends here
2 changes: 1 addition & 1 deletion site-lisp/config/init.el
Expand Up @@ -9,7 +9,6 @@
(require 'redo)
(require 'highlight-parentheses)
(require 'winpoint)
(require 'smooth-scrolling)
(require 'iedit)
(ignore-errors (require 'minibuffer-tray))

Expand Down Expand Up @@ -44,6 +43,7 @@
(require 'init-doxymacs)
(require 'init-yasnippet)
(require 'init-package)
(require 'init-smooth-scrolling)

(require 'init-idle)
)
Expand Down

0 comments on commit 2d6c27a

Please sign in to comment.