PURE WAYLAND BABY
This commit is contained in:
parent
c60ce8997c
commit
92a440ac27
@ -24,7 +24,19 @@
|
|||||||
|
|
||||||
(setq fancy-splash-image "/home/minhradz/.doom.d/marivector.png")
|
(setq fancy-splash-image "/home/minhradz/.doom.d/marivector.png")
|
||||||
|
|
||||||
(setq doom-theme 'doom-nord)
|
(defun synchronize-theme ()
|
||||||
|
(let* ((light-theme 'doom-nord-light)
|
||||||
|
(dark-theme 'doom-nord)
|
||||||
|
(start-time-light-theme 6)
|
||||||
|
(end-time-light-theme 16)
|
||||||
|
(hour (string-to-number (substring (current-time-string) 11 13)))
|
||||||
|
(next-theme (if (member hour (number-sequence start-time-light-theme end-time-light-theme))
|
||||||
|
light-theme dark-theme)))
|
||||||
|
(when (not (equal doom-theme next-theme))
|
||||||
|
(setq doom-theme next-theme)
|
||||||
|
(load-theme next-theme t))))
|
||||||
|
|
||||||
|
(run-with-timer 0 900 'synchronize-theme)
|
||||||
|
|
||||||
(with-eval-after-load 'doom-themes
|
(with-eval-after-load 'doom-themes
|
||||||
(doom-themes-treemacs-config))
|
(doom-themes-treemacs-config))
|
||||||
@ -152,5 +164,3 @@
|
|||||||
(map! :leader
|
(map! :leader
|
||||||
:desc "Insert node immediately"
|
:desc "Insert node immediately"
|
||||||
"n r I" #'org-roam-node-insert-immediate)
|
"n r I" #'org-roam-node-insert-immediate)
|
||||||
|
|
||||||
(setq inhibit-x-resources t)
|
|
||||||
|
@ -150,7 +150,7 @@
|
|||||||
;;php ; perl's insecure younger brother
|
;;php ; perl's insecure younger brother
|
||||||
;;plantuml ; diagrams for confusing people more
|
;;plantuml ; diagrams for confusing people more
|
||||||
;;purescript ; javascript, but functional
|
;;purescript ; javascript, but functional
|
||||||
python ; beautiful is better than ugly
|
(python +lsp +pyright +pyenv +poetry)
|
||||||
;;qt ; the 'cutest' gui framework ever
|
;;qt ; the 'cutest' gui framework ever
|
||||||
;;racket ; a DSL for DSLs
|
;;racket ; a DSL for DSLs
|
||||||
;;raku ; the artist formerly known as perl6
|
;;raku ; the artist formerly known as perl6
|
||||||
|
@ -37,7 +37,8 @@ local linters = require("lvim.lsp.null-ls.linters")
|
|||||||
formatters.setup({
|
formatters.setup({
|
||||||
{
|
{
|
||||||
exe = "black",
|
exe = "black",
|
||||||
args = {},
|
filetypes = { "python" },
|
||||||
|
args = { "--quiet", "--fast", "-" },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
exe = "clang_format",
|
exe = "clang_format",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user