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")
|
||||
:config (add-hook 'prog-mode-hook 'pragmatapro-lig-mode))
|
||||
|
||||
;; use doom themes
|
||||
(use-package doom-themes
|
||||
:straight (doom-themes :type git
|
||||
:host github
|
||||
:repo "doomemacs/themes")
|
||||
:config (load-theme 'doom-badger t)
|
||||
(setq doom-badger-brighter-comments t
|
||||
doom-themes-treemacs-theme "doom-colors")
|
||||
; (set-face-foreground-color 'font-lock-constant-face #635770)
|
||||
(set-face-foreground 'font-lock-constant-face "#834980")
|
||||
(doom-themes-neotree-config)
|
||||
(doom-themes-treemacs-config)
|
||||
(doom-themes-org-config))
|
||||
;; ;; use doom themes
|
||||
;; (use-package doom-themes
|
||||
;; :straight (doom-themes :type git
|
||||
;; :host github
|
||||
;; :repo "doomemacs/themes")
|
||||
;; :config (load-theme 'doom-badger t)
|
||||
;; (setq doom-badger-brighter-comments t
|
||||
;; doom-themes-treemacs-theme "doom-colors")
|
||||
;; ; (set-face-foreground-color 'font-lock-constant-face #635770)
|
||||
;; (set-face-foreground 'font-lock-constant-face "#834980")
|
||||
;; (doom-themes-neotree-config)
|
||||
;; (doom-themes-treemacs-config)
|
||||
;; (doom-themes-org-config))
|
||||
|
||||
;; try using a fancier mode line
|
||||
(use-package doom-modeline
|
||||
|
@ -86,7 +86,8 @@
|
|||
:init (doom-modeline-mode 1)
|
||||
:config
|
||||
(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-encoding nil)
|
||||
(display-battery-mode 1))
|
||||
|
@ -190,10 +191,10 @@
|
|||
scala-indent:align-forms nil
|
||||
scala-indent:use-javadoc-style t))
|
||||
|
||||
;; ;; Enable nice rendering of diagnostics like compile errors.
|
||||
;; (use-package flycheck
|
||||
;; :init (global-flycheck-mode))
|
||||
;;
|
||||
;; Enable nice rendering of diagnostics like compile errors.
|
||||
(use-package flycheck
|
||||
:init (global-flycheck-mode))
|
||||
|
||||
;; (use-package lsp-mode
|
||||
;; :ensure t)
|
||||
;; ; :init (setq lsp-prefer-flymake nil))
|
||||
|
@ -240,6 +241,20 @@
|
|||
:commands 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
|
||||
(use-package magit
|
||||
:commands magit-status magit-blame
|
||||
|
|
Loading…
Reference in New Issue