Compare commits

..

No commits in common. "84122cea20f05feacbc08a4d857392b06a586ff4" and "5a26dfe408b2d8850ced02d936942997274f7ddf" have entirely different histories.

2 changed files with 16 additions and 2 deletions

View File

@ -7,7 +7,19 @@
(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)
(evil-collection-dashboard-setup)
: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)
:custom
(dashboard-items '((projects . 5) (recents . 5)))
(dashboard-set-heading-icons t)

View File

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