blob: 858e064bd7e49e717f7cf41ab796bb26c480c0f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
(require 'dash)
(require 'bindKeys)
(require 'treemacs)
;; (setq treemacs-dir
;; (car (-filter (lambda (path)
;; (string-match-p "^.+.emacs.d/elpa/treemacs-[0-9]+.[0-9]+$" path))
;; load-path)))
(bindKeys '("t")
'(("i" . treemacs)
("t" . treemacs-select-window)
("b" . treemacs-bookmark)
("f" . treemacs-find-file)
("d" . treemacs-delete-other-windows)))
(provide 'setup-treemacs)
;;; setup-treemacs.el ends here
|