Browse Source

ace-window added

master
Marc Pohling 6 years ago
parent
commit
42ee4ec113
1 changed files with 19 additions and 2 deletions
  1. 21
      config.org

21
config.org

@ -746,12 +746,18 @@ _v_ verify setup _f_ check _s_ select
* Treemacs * Treemacs
A file manager comparable to neotree. A file manager comparable to neotree.
[[https://github.com/Alexander-Miller/treemacs][Github]]
It has some requirements, which gets used here anyway: It has some requirements, which gets used here anyway:
- ace-window - ace-window
- hydra - hydra
- projectile - projectile
- python - python
I copied the configuration example from the github site.
No idea what this executable-find is about.
TODO check it out!
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package treemacs (use-package treemacs
:ensure t :ensure t
@ -810,15 +816,26 @@ _v_ verify setup _f_ check _s_ select
- treemacs-bookmark - treemacs-bookmark
- treemacs-find-file - treemacs-find-file
- treemacs-find-tag - treemacs-find-tag
* Window Handling * Window Handling
Some tools to easen the navigation, creation and deletion of windows Some tools to easen the navigation, creation and deletion of windows
** Ace-Window ** Ace-Window
#+begin_src emacs-lisp
(use-package ace-window
:ensure t
:init
(global-set-key (kbd "C-x o") 'ace-window)
)
#+end_src
** Windmove ** Windmove
Windmove easens the navigation between windows. Windmove easens the navigation between windows.
Here we are setting the default keybindings (shift+arrow
Here we are setting the default keybindings (shift+arrow)
CURRENTLY NOT WORKING, defaults are blocked.
Also not sure if necessary when using ace-window.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package windmove (use-package windmove
:ensure t :ensure t

Loading…
Cancel
Save