mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-03 06:27:21 +01:00
more pretty
This commit is contained in:
@@ -94,6 +94,9 @@
|
|||||||
"SPC" '(counsel-M-x :which-key "M-x")
|
"SPC" '(counsel-M-x :which-key "M-x")
|
||||||
"w" '(hydra-window/body :which-key "Window")
|
"w" '(hydra-window/body :which-key "Window")
|
||||||
|
|
||||||
|
"g" '(:ignore t :which-key "Git")
|
||||||
|
"gg" '(magit :which-key "Magit Status")
|
||||||
|
|
||||||
"f" '(:ignore t :which-key "Files")
|
"f" '(:ignore t :which-key "Files")
|
||||||
"ff" '(counsel-git :which-key "find in git dir")
|
"ff" '(counsel-git :which-key "find in git dir")
|
||||||
"fd" '(find-user-init-file :which-key "open init file")
|
"fd" '(find-user-init-file :which-key "open init file")
|
||||||
@@ -102,10 +105,21 @@
|
|||||||
;; evil
|
;; evil
|
||||||
(use-package evil
|
(use-package evil
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:init
|
||||||
|
(setq evil-want-keybinding nil)
|
||||||
:config
|
:config
|
||||||
(evil-mode 1)
|
(evil-mode 1)
|
||||||
(define-key evil-insert-state-map "jk" 'evil-normal-state))
|
(define-key evil-insert-state-map "jk" 'evil-normal-state))
|
||||||
|
|
||||||
|
(use-package evil-magit
|
||||||
|
:ensure t)
|
||||||
|
|
||||||
|
(use-package evil-collection
|
||||||
|
:after evil
|
||||||
|
:ensure t
|
||||||
|
:config
|
||||||
|
(evil-collection-init))
|
||||||
|
|
||||||
;; which key
|
;; which key
|
||||||
(use-package which-key
|
(use-package which-key
|
||||||
:ensure t
|
:ensure t
|
||||||
@@ -184,7 +198,6 @@
|
|||||||
(use-package forge
|
(use-package forge
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
|
||||||
|
|
||||||
;; org
|
;; org
|
||||||
(use-package f
|
(use-package f
|
||||||
:ensure t)
|
:ensure t)
|
||||||
@@ -197,5 +210,14 @@
|
|||||||
:ensure t
|
:ensure t
|
||||||
:config (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))))
|
:config (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))))
|
||||||
|
|
||||||
|
(use-package doom-themes
|
||||||
|
:ensure t
|
||||||
|
:config (load-theme 'doom-one t))
|
||||||
|
|
||||||
|
(use-package all-the-icons)
|
||||||
|
(use-package doom-modeline
|
||||||
|
:ensure t
|
||||||
|
:hook (after-init . doom-modeline-mode))
|
||||||
|
|
||||||
(add-hook 'org-mode-hook 'flyspell-mode)
|
(add-hook 'org-mode-hook 'flyspell-mode)
|
||||||
(add-hook 'text-mode-hook 'flyspell-mode)
|
(add-hook 'text-mode-hook 'flyspell-mode)
|
||||||
|
|||||||
Reference in New Issue
Block a user