From 5ace565eace33bbc6c10b682b344f4d757a0bb82 Mon Sep 17 00:00:00 2001 From: luxick Date: Mon, 28 Oct 2019 07:09:24 +0100 Subject: [PATCH] Hide dotfiles in treemacs per default. --- setup-emacs.org | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup-emacs.org b/setup-emacs.org index 2d95e79..31a0a87 100644 --- a/setup-emacs.org +++ b/setup-emacs.org @@ -148,7 +148,6 @@ This is my configuration for the emacs editor. ** Use Ivy #+BEGIN_SRC emacs-lisp (use-package ivy - :ensure t :init (ivy-mode 1) (unbind-key "S-SPC" ivy-minibuffer-map) @@ -342,7 +341,6 @@ This is my configuration for the emacs editor. ("C-c a t" . unindent-by-four)) :hook (org-mode . visual-line-mode) :config - (let ((todo-path (expand-file-name "~/Notes/todo.org"))) (when (file-exists-p todo-path) (setq org-agenda-files (list todo-path) @@ -570,6 +568,7 @@ This is my configuration for the emacs editor. (treemacs-follow-mode t) (treemacs-filewatch-mode t) (treemacs-fringe-indicator-mode t) + (treemacs-toggle-show-dotfiles) (pcase (cons (not (null (executable-find "git"))) (not (null treemacs-python-executable))) (`(t . t)