Minimap Fixes
Another set of fixes to the minimap as suggested by @hlissner. - Changed the use-package to :defer t - Updated the README.org and removed the Hacks section - Alphabetized the init.example.el list
This commit is contained in:
parent
c1937397f3
commit
fe68c654c0
3 changed files with 4 additions and 9 deletions
|
@ -33,6 +33,7 @@
|
||||||
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
|
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
|
||||||
;;hydra
|
;;hydra
|
||||||
;;indent-guides ; highlighted indent columns
|
;;indent-guides ; highlighted indent columns
|
||||||
|
;;minimap ; show a map of the code on the side
|
||||||
modeline ; snazzy, Atom-inspired modeline, plus API
|
modeline ; snazzy, Atom-inspired modeline, plus API
|
||||||
;;nav-flash ; blink cursor line after big motions
|
;;nav-flash ; blink cursor line after big motions
|
||||||
;;neotree ; a project drawer, like NERDTree for vim
|
;;neotree ; a project drawer, like NERDTree for vim
|
||||||
|
@ -47,7 +48,6 @@
|
||||||
;;window-select ; visually switch windows
|
;;window-select ; visually switch windows
|
||||||
workspaces ; tab emulation, persistence & separate workspaces
|
workspaces ; tab emulation, persistence & separate workspaces
|
||||||
;;zen ; distraction-free coding or writing
|
;;zen ; distraction-free coding or writing
|
||||||
;;minimap ; show a map of the code on the side
|
|
||||||
|
|
||||||
:editor
|
:editor
|
||||||
(evil +everywhere); come to the dark side, we have cookies
|
(evil +everywhere); come to the dark side, we have cookies
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#+TITLE: Minimap
|
#+TITLE: :ui minimap
|
||||||
#+DATE: May 8, 2020
|
#+DATE: May 8, 2020
|
||||||
#+SINCE: v2.0
|
#+SINCE: v3.0.0
|
||||||
#+STARTUP: inlineimages nofold
|
#+STARTUP: inlineimages nofold
|
||||||
|
|
||||||
* Table of Contents :TOC_3:noexport:
|
* Table of Contents :TOC_3:noexport:
|
||||||
|
@ -8,7 +8,6 @@
|
||||||
- [[#maintainers][Maintainers]]
|
- [[#maintainers][Maintainers]]
|
||||||
- [[#module-flags][Module Flags]]
|
- [[#module-flags][Module Flags]]
|
||||||
- [[#plugins][Plugins]]
|
- [[#plugins][Plugins]]
|
||||||
- [[#hacks][Hacks]]
|
|
||||||
- [[#features][Features]]
|
- [[#features][Features]]
|
||||||
- [[#configuration][Configuration]]
|
- [[#configuration][Configuration]]
|
||||||
- [[#troubleshooting][Troubleshooting]]
|
- [[#troubleshooting][Troubleshooting]]
|
||||||
|
@ -28,10 +27,6 @@ This module provides no flags.
|
||||||
** Plugins
|
** Plugins
|
||||||
+ [[https://elpa.gnu.org/packages/minimap.html][minimap.el]]
|
+ [[https://elpa.gnu.org/packages/minimap.html][minimap.el]]
|
||||||
|
|
||||||
** Hacks
|
|
||||||
+ The colors used by the minimap are terrible so are overridden with
|
|
||||||
=custom-set-faces!= using colors out of the current DOOM theme.
|
|
||||||
|
|
||||||
* Features
|
* Features
|
||||||
A minimap which provides an overview of the current buffer to the side,
|
A minimap which provides an overview of the current buffer to the side,
|
||||||
displaying the currently visible region and the current line. You can left-click
|
displaying the currently visible region and the current line. You can left-click
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
;;; ui/minimap/config.el -*- lexical-binding: t; -*-
|
;;; ui/minimap/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(use-package! minimap
|
(use-package! minimap
|
||||||
:hook doom-load-theme-hook
|
:defer t
|
||||||
:config
|
:config
|
||||||
(setq minimap-window-location 'right
|
(setq minimap-window-location 'right
|
||||||
minimap-update-delay 0
|
minimap-update-delay 0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue