diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-12-16 18:15:48 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-12-16 18:15:48 +0100 |
commit | b6a2816de43bc1af9fd42e1adfb3cc2033e2e83a (patch) | |
tree | a24b59b571007301fffb903606634c9b22c36150 /.config/emacs | |
parent | no centaur-tabs, ibuffer (diff) | |
download | dotfiles-bsd-b6a2816de43bc1af9fd42e1adfb3cc2033e2e83a.tar.gz dotfiles-bsd-b6a2816de43bc1af9fd42e1adfb3cc2033e2e83a.tar.bz2 dotfiles-bsd-b6a2816de43bc1af9fd42e1adfb3cc2033e2e83a.tar.xz dotfiles-bsd-b6a2816de43bc1af9fd42e1adfb3cc2033e2e83a.tar.zst dotfiles-bsd-b6a2816de43bc1af9fd42e1adfb3cc2033e2e83a.zip |
cool
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/org/config.org | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.config/emacs/org/config.org b/.config/emacs/org/config.org index 18c8a7f..a8f08bf 100644 --- a/.config/emacs/org/config.org +++ b/.config/emacs/org/config.org @@ -144,6 +144,7 @@ (require 'evil-collection) (evil-mode t) (evil-collection-init 'ibuffer) + (evil-collection-init 'flymake) (setq evil-emacs-state-cursor '("#b16286" box)) @@ -760,16 +761,19 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer." ** Other key bindings #+BEGIN_SRC emacs-lisp + (defun my/nothing ()) (global-set-key [f1] 'shell-pop) (global-set-key [f2] 'neotree-toggle) (global-set-key [f3] 'flymake-show-diagnostics-buffer) (global-set-key [f4] 'helm-make-projectile) (global-set-key [f5] 'undo-tree-visualize) (global-set-key (kbd "C-x d") 'dired) - (global-set-key (kbd "C-x b") 'helm-buffers-list) - (global-set-key (kbd "C-x C-b") 'ibuffer) + (global-set-key (kbd "C-x b") 'ibuffer) + (global-set-key (kbd "C-x C-b") 'helm-buffers-list) (global-set-key (kbd "M-9") 'shell-command) (global-set-key (kbd "M-0") 'async-shell-command) + (global-set-key (kbd "M-j") 'next-buffer) + (global-set-key (kbd "M-k") 'previous-buffer) (shell-pop--set-shell-type 'my/shell-pop-shell-type my/shell-pop-shell-type) #+END_SRC |