huh
This commit is contained in:
parent
9109c61e41
commit
83cb66ccc9
1 changed files with 21 additions and 27 deletions
|
@ -201,37 +201,31 @@ kept-old-versions 5)
|
|||
#+end_src
|
||||
** Appearance
|
||||
#+begin_src emacs-lisp
|
||||
;; TODO: change this for something better i guess
|
||||
(use-package doom-themes
|
||||
:config
|
||||
(load-theme 'doom-monokai-spectrum t))
|
||||
|
||||
<<<<<<< HEAD
|
||||
;; TODO: change this for something better i guess
|
||||
(use-package monokai-theme
|
||||
:config
|
||||
(load-theme 'monokai t))
|
||||
=======
|
||||
;; emacsclient things
|
||||
(setq frame-resize-pixelwise t)
|
||||
;; ui settings apparently go below
|
||||
(setq default-frame-alist '((font . "JetBrainsMono NF")
|
||||
;; emacsclient things
|
||||
(setq frame-resize-pixelwise t)
|
||||
;; ui settings apparently go below
|
||||
(setq default-frame-alist '((font . "JetBrainsMono NF")
|
||||
'(vertical-scroll-bars . nil)
|
||||
'(horizontal-scroll-bars . nil)))
|
||||
>>>>>>> parent of e33b8f5 (config/emacs: use moe-theme)
|
||||
>>>>>>> parent of e33b8f5 (config/emacs: use moe-theme)
|
||||
|
||||
;; GO AWAY
|
||||
(defun my/disable-scroll-bars (frame)
|
||||
;; GO AWAY
|
||||
(defun my/disable-scroll-bars (frame)
|
||||
(modify-frame-parameters frame
|
||||
'((vertical-scroll-bars . nil)
|
||||
(horizontal-scroll-bars . nil))))
|
||||
(add-hook 'after-make-frame-functions 'my/disable-scroll-bars)
|
||||
(add-hook 'after-make-frame-functions 'my/disable-scroll-bars)
|
||||
|
||||
|
||||
;; y/n is better than yes/no
|
||||
(fset 'yes-or-no-p 'y-or-n-p)
|
||||
;; y/n is better than yes/no
|
||||
(fset 'yes-or-no-p 'y-or-n-p)
|
||||
|
||||
;; font
|
||||
(set-face-attribute 'default nil
|
||||
;; font
|
||||
(set-face-attribute 'default nil
|
||||
:font "JetBrainsMono NF"
|
||||
:weight 'light
|
||||
:height 125)
|
||||
|
|
Loading…
Reference in a new issue