Compare commits

..

2 Commits

Author SHA1 Message Date
Jeremy Dormitzer
84122cea20 Use evil-collection dashboard setup instead of a custom evil setup 2021-02-21 11:43:07 -05:00
Jeremy Dormitzer
5b277bd55e Don't bind lsp-mode-map to anything global 2021-02-21 11:42:42 -05:00
2 changed files with 2 additions and 16 deletions

View File

@ -7,19 +7,7 @@
(when (file-exists-p (expand-file-name "~/Sync/pictures/hallows.png"))
(setq dashboard-startup-banner (expand-file-name "~/Sync/pictures/hallows.png")))
(dashboard-setup-startup-hook)
:general
('normal dashboard-mode-map
"TAB" #'widget-forward
"<tab>" #'widget-forward
"<backtab>" #'widget-backward
"RET" #'dashboard-return
"?" #'describe-mode
"gr" #'dashboard-refresh-buffer
"q" #'quit-window
"r" #'dashboard-jump-to-recent-files
"p" #'dashboard-jump-to-projects
"{" #'dashboard-previous-section
"}" #'dashboard-next-section)
(evil-collection-dashboard-setup)
:custom
(dashboard-items '((projects . 5) (recents . 5)))
(dashboard-set-heading-icons t)

View File

@ -48,9 +48,7 @@
:custom
(lsp-keymap-prefix "C-c l")
(lsp-headerline-breadcrumb-enable nil)
(lsp-file-watch-threshold 100000)
:bind-keymap
("C-c l" . lsp-mode-map))
(lsp-file-watch-threshold 100000))
(use-package lsp-ui
:after lsp)