misc small updates
This commit is contained in:
parent
7903f0510f
commit
61fcc9c7ae
6 changed files with 49 additions and 23 deletions
22
config.el
22
config.el
|
@ -12,10 +12,23 @@
|
|||
;; accept. For example:
|
||||
(setq doom-font (font-spec :family "JetBrains Mono" :size 19))
|
||||
(setq fancy-splash-image (concat doom-user-dir "splash.png"))
|
||||
(setq doom-theme 'doom-monokai-pro)
|
||||
;; (setq doom-theme 'doom-monokai-pro)
|
||||
(setq doom-theme 'doom-one)
|
||||
;; (setq doom-theme 'doom-tomorrow-night-bright)
|
||||
;; (doom-themes-treemacs-config)
|
||||
|
||||
|
||||
(setq +doom-dashboard-pwd-policy nil)
|
||||
|
||||
;; Must be used *after* the theme is loaded
|
||||
(custom-set-faces
|
||||
'(default ((t (:background "#111111"))))
|
||||
'(hl-line ((t (:background "#222222"))))
|
||||
;; '(solair-default-face ((t (:background "#111111"))))
|
||||
'(cursor ((t (:background "#FCFCFA" :foreground "black"))))
|
||||
'(line-number ((t (:foreground "#424242"))))
|
||||
'(mu4e-highlight-face ((t (:inherit nil :background "gray26" :foreground "gray85")))))
|
||||
|
||||
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||
(setq display-line-numbers-type 'relative)
|
||||
|
@ -37,6 +50,11 @@
|
|||
(setq org-directory "~/Documents/Obsidian/Primary")
|
||||
|
||||
(use-package! kbd-mode :defer t)
|
||||
(use-package! kdl-mode)
|
||||
|
||||
(use-package! direnv
|
||||
:config
|
||||
(direnv-mode))
|
||||
|
||||
;; Modeline
|
||||
;; - add current workspace name
|
||||
|
@ -53,7 +71,7 @@
|
|||
(t (call-interactively #'yas-insert-snippet))))
|
||||
|
||||
;; set default frame size on launch
|
||||
(setq default-frame-alist '( (left . 0) (top . 0) (height . 48) (width . 160)))
|
||||
;; (setq default-frame-alist '( (left . 0) (top . 0) (height . 48) (width . 160)))
|
||||
|
||||
;; some global settings
|
||||
;; (setq tab-always-indent t) ; don't autocomplete with tab
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue