diff options
Diffstat (limited to '.emacs.d/lisp')
| -rw-r--r-- | .emacs.d/lisp/init-evil.el | 3 | ||||
| -rw-r--r-- | .emacs.d/lisp/init-evil.el~ | 5 | ||||
| -rw-r--r-- | .emacs.d/lisp/init-expand-region.el | 10 | ||||
| -rw-r--r-- | .emacs.d/lisp/init-expand-region.el~ | 8 |
4 files changed, 24 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-evil.el b/.emacs.d/lisp/init-evil.el index 0c25450..06e8236 100644 --- a/.emacs.d/lisp/init-evil.el +++ b/.emacs.d/lisp/init-evil.el @@ -18,7 +18,8 @@ "c" 'execute-c-program "e" 'find-file "b" 'switch-to-buffer - "q" 'kill-buffer + "q" 'quit-window + "e" 'er/expand-region ;; switch window "0" 'select-window-0 diff --git a/.emacs.d/lisp/init-evil.el~ b/.emacs.d/lisp/init-evil.el~ index 375f5cc..234d620 100644 --- a/.emacs.d/lisp/init-evil.el~ +++ b/.emacs.d/lisp/init-evil.el~ @@ -8,6 +8,8 @@ (require 'evil) (evil-mode 1) +;; todo function and keybinding to open file in new window + ;; Evil leader, more evil (global-evil-leader-mode) (evil-leader/set-leader ";") @@ -16,7 +18,8 @@ "c" 'execute-c-program "e" 'find-file "b" 'switch-to-buffer - "q" 'kill-buffer + "q" 'quit-window + "f" 'er/expand-region ;; switch window "0" 'select-window-0 diff --git a/.emacs.d/lisp/init-expand-region.el b/.emacs.d/lisp/init-expand-region.el new file mode 100644 index 0000000..05b3ac0 --- /dev/null +++ b/.emacs.d/lisp/init-expand-region.el @@ -0,0 +1,10 @@ +;;; expand-region --- Configuration + +;;; Commentary: + +;;; Code: + +(require 'expand-region) + +(provide 'init-expand-region) +;;; init-expand-region ends here diff --git a/.emacs.d/lisp/init-expand-region.el~ b/.emacs.d/lisp/init-expand-region.el~ new file mode 100644 index 0000000..fffd943 --- /dev/null +++ b/.emacs.d/lisp/init-expand-region.el~ @@ -0,0 +1,8 @@ +;;; expand-region --- Configuration + +;;; Commentary: + +;;; Code: + +(provide 'init-expand-region) +;;; init-expand-region ends here |
