fix theme issues
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(custom-enabled-themes '(modus-operandi))
|
'(custom-enabled-themes '(misterioso))
|
||||||
'(eglot-code-action-indications '(eldoc-hint))
|
'(eglot-code-action-indications '(eldoc-hint))
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
'(cape dart-mode dumber-jump evil evil-collection exec-path-from-shell
|
'(cape dart-mode dumber-jump evil evil-collection exec-path-from-shell
|
||||||
|
|||||||
13
init.el
13
init.el
@@ -11,7 +11,9 @@
|
|||||||
;; (load-theme 'modus-vivendi)
|
;; (load-theme 'modus-vivendi)
|
||||||
|
|
||||||
;; light mode
|
;; light mode
|
||||||
(load-theme 'modus-operandi)
|
;; (load-theme 'modus-operandi)
|
||||||
|
(load-theme 'misterioso)
|
||||||
|
(set-cursor-color "#ffffff")
|
||||||
|
|
||||||
(when (string= system-type "darwin")
|
(when (string= system-type "darwin")
|
||||||
(setq dired-use-ls-dired nil)
|
(setq dired-use-ls-dired nil)
|
||||||
@@ -55,7 +57,7 @@
|
|||||||
(tab-bar-mode -1)
|
(tab-bar-mode -1)
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode -1)
|
||||||
(global-hl-line-mode 1)
|
(global-hl-line-mode -1)
|
||||||
(global-eldoc-mode 1)
|
(global-eldoc-mode 1)
|
||||||
(global-display-line-numbers-mode 1)
|
(global-display-line-numbers-mode 1)
|
||||||
|
|
||||||
@@ -104,14 +106,15 @@
|
|||||||
(use-package evil-collection
|
(use-package evil-collection
|
||||||
:after evil
|
:after evil
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:custom
|
||||||
|
(evil-collection-key-blacklist '("SPC"))
|
||||||
:config
|
:config
|
||||||
(evil-collection-init)
|
(evil-collection-init)
|
||||||
|
|
||||||
(require 'compile)
|
(require 'compile)
|
||||||
(keymap-set compilation-minor-mode-map "SPC" nil)
|
(keymap-set compilation-minor-mode-map "SPC" nil)
|
||||||
(keymap-set compilation-mode-map "SPC" nil)
|
(keymap-set compilation-mode-map "SPC" nil)
|
||||||
(keymap-set help-mode-map "SPC" nil)
|
(keymap-set help-mode-map "SPC" nil))
|
||||||
(keymap-set dired-mode-map "SPC" nil))
|
|
||||||
|
|
||||||
(use-package move-text
|
(use-package move-text
|
||||||
:bind (("M-<down>" . 'move-text-down)
|
:bind (("M-<down>" . 'move-text-down)
|
||||||
@@ -192,6 +195,8 @@
|
|||||||
(use-package yasnippet-snippets)
|
(use-package yasnippet-snippets)
|
||||||
|
|
||||||
(use-package undo-tree
|
(use-package undo-tree
|
||||||
|
:custom
|
||||||
|
(undo-tree-history-directory-alist `(,(cons "." (concat (file-name-directory user-init-file) "undo-tree"))))
|
||||||
:config
|
:config
|
||||||
(global-undo-tree-mode 1))
|
(global-undo-tree-mode 1))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user