回答:
これをemacs構成ファイルに配置します。
;; Set the neo-window-width to the current width of the
;; neotree window, to trick neotree into resetting the
;; width back to the actual window width.
;; Fixes: https://github.com/jaypei/emacs-neotree/issues/262
(eval-after-load "neotree"
'(add-to-list 'window-size-change-functions
(lambda (frame)
(let ((neo-window (neo-global--get-window)))
(unless (null neo-window)
(setq neo-window-width (window-width neo-window)))))))
(setq neo-window-width 20)
neotreeが再オープンする幅を設定できます-時間、傾斜、およびemacs-lispチョップがある場合、以前に使用された幅に従って値を変更する方法が必要です。