disable themes, use eyebrowse, etc.
This commit is contained in:
parent
7da59b935b
commit
c912e8aae7
51
init.el
51
init.el
|
@ -66,19 +66,19 @@
|
||||||
:repo "lumiknit/emacs-pragmatapro-ligatures")
|
:repo "lumiknit/emacs-pragmatapro-ligatures")
|
||||||
:config (add-hook 'prog-mode-hook 'pragmatapro-lig-mode))
|
:config (add-hook 'prog-mode-hook 'pragmatapro-lig-mode))
|
||||||
|
|
||||||
;; use doom themes
|
;; ;; use doom themes
|
||||||
(use-package doom-themes
|
;; (use-package doom-themes
|
||||||
:straight (doom-themes :type git
|
;; :straight (doom-themes :type git
|
||||||
:host github
|
;; :host github
|
||||||
:repo "doomemacs/themes")
|
;; :repo "doomemacs/themes")
|
||||||
:config (load-theme 'doom-badger t)
|
;; :config (load-theme 'doom-badger t)
|
||||||
(setq doom-badger-brighter-comments t
|
;; (setq doom-badger-brighter-comments t
|
||||||
doom-themes-treemacs-theme "doom-colors")
|
;; doom-themes-treemacs-theme "doom-colors")
|
||||||
; (set-face-foreground-color 'font-lock-constant-face #635770)
|
;; ; (set-face-foreground-color 'font-lock-constant-face #635770)
|
||||||
(set-face-foreground 'font-lock-constant-face "#834980")
|
;; (set-face-foreground 'font-lock-constant-face "#834980")
|
||||||
(doom-themes-neotree-config)
|
;; (doom-themes-neotree-config)
|
||||||
(doom-themes-treemacs-config)
|
;; (doom-themes-treemacs-config)
|
||||||
(doom-themes-org-config))
|
;; (doom-themes-org-config))
|
||||||
|
|
||||||
;; try using a fancier mode line
|
;; try using a fancier mode line
|
||||||
(use-package doom-modeline
|
(use-package doom-modeline
|
||||||
|
@ -86,7 +86,8 @@
|
||||||
:init (doom-modeline-mode 1)
|
:init (doom-modeline-mode 1)
|
||||||
:config
|
:config
|
||||||
(setq doom-modeline-height 1
|
(setq doom-modeline-height 1
|
||||||
doom-modeline-buffer-file-name-style 'truncate-with-project
|
doom-modeline-buffer-file-name-style 'truncate-all
|
||||||
|
;doom-modeline-buffer-file-name-style 'truncate-with-project
|
||||||
;doom-modeline-buffer-file-name-style 'relative-to-project
|
;doom-modeline-buffer-file-name-style 'relative-to-project
|
||||||
doom-modeline-buffer-encoding nil)
|
doom-modeline-buffer-encoding nil)
|
||||||
(display-battery-mode 1))
|
(display-battery-mode 1))
|
||||||
|
@ -190,10 +191,10 @@
|
||||||
scala-indent:align-forms nil
|
scala-indent:align-forms nil
|
||||||
scala-indent:use-javadoc-style t))
|
scala-indent:use-javadoc-style t))
|
||||||
|
|
||||||
;; ;; Enable nice rendering of diagnostics like compile errors.
|
;; Enable nice rendering of diagnostics like compile errors.
|
||||||
;; (use-package flycheck
|
(use-package flycheck
|
||||||
;; :init (global-flycheck-mode))
|
:init (global-flycheck-mode))
|
||||||
;;
|
|
||||||
;; (use-package lsp-mode
|
;; (use-package lsp-mode
|
||||||
;; :ensure t)
|
;; :ensure t)
|
||||||
;; ; :init (setq lsp-prefer-flymake nil))
|
;; ; :init (setq lsp-prefer-flymake nil))
|
||||||
|
@ -240,6 +241,20 @@
|
||||||
:commands popup-imenu
|
:commands popup-imenu
|
||||||
:bind ("M-i" . popup-imenu))
|
:bind ("M-i" . popup-imenu))
|
||||||
|
|
||||||
|
;; eyebrowse
|
||||||
|
(use-package eyebrowse
|
||||||
|
:config (eyebrowse-mode t)
|
||||||
|
:bind (("M-0" . eyebrowse-switch-to-window-config-0)
|
||||||
|
("M-1" . eyebrowse-switch-to-window-config-1)
|
||||||
|
("M-2" . eyebrowse-switch-to-window-config-2)
|
||||||
|
("M-3" . eyebrowse-switch-to-window-config-3)
|
||||||
|
("M-4" . eyebrowse-switch-to-window-config-4)
|
||||||
|
("M-5" . eyebrowse-switch-to-window-config-5)
|
||||||
|
("M-6" . eyebrowse-switch-to-window-config-6)
|
||||||
|
("M-7" . eyebrowse-switch-to-window-config-7)
|
||||||
|
("M-8" . eyebrowse-switch-to-window-config-8)
|
||||||
|
("M-9" . eyebrowse-switch-to-window-config-9)))
|
||||||
|
|
||||||
;; magit
|
;; magit
|
||||||
(use-package magit
|
(use-package magit
|
||||||
:commands magit-status magit-blame
|
:commands magit-status magit-blame
|
||||||
|
|
Loading…
Reference in New Issue