prevent malicious elisp warning when running themes

This commit is contained in:
minhtrannhat 2021-10-08 21:22:51 -04:00
parent 4a052e26b8
commit c97a1cc43a
No known key found for this signature in database
GPG Key ID: 894C6A5801E01CA9
3 changed files with 3 additions and 2 deletions

View File

@ -34,7 +34,7 @@
light-theme dark-theme))) light-theme dark-theme)))
(when (not (equal doom-theme next-theme)) (when (not (equal doom-theme next-theme))
(setq doom-theme next-theme) (setq doom-theme next-theme)
(load-theme next-theme)))) (load-theme next-theme t))))
(run-with-timer 0 900 'synchronize-theme) (run-with-timer 0 900 'synchronize-theme)

View File

@ -5,7 +5,7 @@
;; 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-safe-themes '(custom-safe-themes
'("1704976a1797342a1b4ea7a75bdbb3be1569f4619134341bd5a4c1cfb16abad4" "d268b67e0935b9ebc427cad88ded41e875abfcc27abd409726a92e55459e0d01" default)) '("e3b2bad7b781a968692759ad12cb6552bc39d7057762eefaf168dbe604ce3a4b" "1704976a1797342a1b4ea7a75bdbb3be1569f4619134341bd5a4c1cfb16abad4" "d268b67e0935b9ebc427cad88ded41e875abfcc27abd409726a92e55459e0d01" default))
'(git-gutter:update-interval 1) '(git-gutter:update-interval 1)
'(warning-suppress-log-types '((iedit) (iedit) (iedit) (iedit) (iedit) (iedit) (iedit))) '(warning-suppress-log-types '((iedit) (iedit) (iedit) (iedit) (iedit) (iedit) (iedit)))
'(warning-suppress-types '(warning-suppress-types

View File

@ -3,6 +3,7 @@ lvim.format_on_save = true
lvim.lint_on_save = true lvim.lint_on_save = true
lvim.colorscheme = "nord" lvim.colorscheme = "nord"
lvim.shell = "/bin/fish" lvim.shell = "/bin/fish"
vim.opt.guifont = "JetBrainsMono Nerd Font Mono:h16"
-- keymappings [view all the defaults by pressing <leader>Lk] -- keymappings [view all the defaults by pressing <leader>Lk]
lvim.leader = "space" lvim.leader = "space"