I would like to get rid of the fringes in the emacs minimap buffer. Specifically the line continuation arrows. I would still like them for my main buffers but find them pointless in the minimap.
I have tried to add the following to my ~/.emacs file:
(add-hook 'minimap-mode-hook (lambda () (setq indicate-empty-lines nil)))
(add-hook 'minimap-mode-hook (lambda () (setq overflow-newline-into-fringeh nil)))
(add-hook 'minimap-mode-hook (lambda () (setq visual-line-mode 0)))
But they don't seem to do much. I am fairly inexperienced when it comes lisp and modifying emacs to my whims so maybe I am misunderstanding how this should be done.
I have tried looking at the GNU pages but still cannot manage. I would appreciate an explanation of what I am doing wrong please.