jaypei / emacs-neotree

A emacs tree plugin like NerdTree for Vim.
GNU General Public License v3.0
1.56k stars 147 forks source link

truncate-line doesn't work #356

Open hvkwak opened 10 months ago

hvkwak commented 10 months ago

Hi, thank you for this repo very much!

Please note that I have limited emacs experience. I was dissapointed with speedbar (especially due to its window width 50 issue). I am trying to fully show the current directory now using emacs-neotree, only to find truncated directory with an arrow as shown in this image: Screenshot from 2024-01-07 16-08-32

Here's part of my init.el, where (setq truncate-lines nil) doesn't work. (add hook neither. I think I am missing something.) Any suggestions? Thank you!

(use-package neotree
  :ensure t
  :config
  (setq neo-window-width 40)
  (setq truncate-lines nil)
  )