5281c3a17b
problem: The Treemacs layer is unable to find python 3 in Windows. cause: The Treemacs layer looks for "python3", but the executable is called "python.exe" in Windows. solution: Let Treemacs check for python 3 upstream, it has a better method for finding the python 3 executable in Windows.
40 lines
1.4 KiB
EmacsLisp
40 lines
1.4 KiB
EmacsLisp
;;; config.el --- Treemacs Layer configuration File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Alexander Miller <alexanderm@web.de>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(defvar treemacs-use-follow-mode t
|
|
"When non-nil use `treemacs-follow-mode'.")
|
|
|
|
(defvar treemacs-use-filewatch-mode t
|
|
"When non-nil use `treemacs-filewatch-mode'.")
|
|
|
|
(defvar treemacs-use-scope-type 'Frames
|
|
"Determines the scope of treemacs buffers and workspaces.
|
|
Possible values are:
|
|
- `Frames' - to scope treemacs to the current frame
|
|
- `Perspectives' - to scope treemacs in conjunction with `persp-mode'.")
|
|
|
|
(defvar treemacs-use-git-mode nil
|
|
"Type of git integration for `treemacs-git-mode'.
|
|
There are 3 possible values:
|
|
1) simple, which highlights only files based on their git status, and is
|
|
slightly faster
|
|
2) extended, which highlights both files and directories, but requires python
|
|
3) deferred, which is the same is extended, but delays highlighting for improved
|
|
performance")
|
|
|
|
(defvar treemacs-lock-width nil
|
|
"When non-nil the treemacs window will not be manually resizable by default.")
|
|
|
|
(defvar treemacs-use-icons-dired t
|
|
"When non-nil use `treemacs-icons-dired'")
|
|
|
|
(defvar treemacs-use-all-the-icons-theme nil
|
|
"Enable the treemacs supported `all-the-icons' theme")
|