diff options
Diffstat (limited to 'settings/setup-ace-window-mode.el')
| -rw-r--r-- | settings/setup-ace-window-mode.el | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/settings/setup-ace-window-mode.el b/settings/setup-ace-window-mode.el new file mode 100644 index 0000000..f0ca5b2 --- /dev/null +++ b/settings/setup-ace-window-mode.el @@ -0,0 +1,34 @@ +;;; setup-ace-window-mode.el --- ace window mode config -*- lexical-binding: t; -*- + +;; Copyright (C) 2018 Benj Bellon + +;; Author: Benj Bellon <bbellon@bbellon-ld2.linkedin.biz> +;; Keywords: lisp + +;; 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 of the License, 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. If not, see <http://www.gnu.org/licenses/>. + +;;; Commentary: + +;; basic config for ace window mode + +;;; Code: +(require 'ace-window) + +(global-set-key (kbd "C-c o") 'ace-window) + +(setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)) + + +(provide 'setup-ace-window-mode) +;;; setup-ace-window-mode.el ends here |
