mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
26 lines
866 B
Org Mode
26 lines
866 B
Org Mode
|
:PROPERTIES:
|
|||
|
:ID: ee891758-1259-4af4-aabc-418a1c644d2f
|
|||
|
:ROAM_REFS: https://github.com/Alexander-Miller/treemacs
|
|||
|
:END:
|
|||
|
#+title: Treemacs
|
|||
|
#+filetags: emacs-load
|
|||
|
|
|||
|
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|||
|
#
|
|||
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|||
|
|
|||
|
#+BEGIN_QUOTE
|
|||
|
Treemacs is a file and project explorer similar to NeoTree or vim’s NerdTree, but largely inspired by the Project Explorer in Eclipse. It shows the file system outlines of your projects in a simple tree layout allowing quick navigation and exploration, while also possessing basic file management utilities.
|
|||
|
#+END_QUOTE
|
|||
|
|
|||
|
Treemacs is really cool.
|
|||
|
|
|||
|
#+BEGIN_SRC emacs-lisp
|
|||
|
(use-package treemacs
|
|||
|
:straight t
|
|||
|
:after (doom-themes)
|
|||
|
:config
|
|||
|
;; read input from a minibuffer not a child frame.
|
|||
|
(setq treemacs-read-string-input 'from-minibuffer))
|
|||
|
#+END_SRC
|