Update emacs.org
This commit is contained in:
parent
78934b772d
commit
43de10432c
1 changed files with 10 additions and 1 deletions
|
@ -26,6 +26,15 @@ M-x org-bable-tangle
|
|||
'utf-8))
|
||||
(prefer-coding-system 'utf-8)
|
||||
#+end_src
|
||||
* Windows Fixes
|
||||
#+begin_src emacs-lisp
|
||||
(if (eq system-type 'windows-nt)
|
||||
;; Makes it feel like actual linux!
|
||||
(progn
|
||||
(setenv "HOME" "C:/Users/user")
|
||||
)
|
||||
)
|
||||
#+end_src
|
||||
* EmacsClient UI
|
||||
#+begin_src emacs-lisp
|
||||
(setq frame-resize-pixelwise t)
|
||||
|
@ -180,7 +189,7 @@ M-x org-bable-tangle
|
|||
(use-package doom-modeline
|
||||
:ensure t
|
||||
:init (doom-modeline-mode 1)
|
||||
:custom ((doom-modeline-height 45)))
|
||||
:custom ((doom-modeline-height 50)))
|
||||
#+end_src
|
||||
** Better help menu
|
||||
#+begin_src emacs-lisp
|
||||
|
|
Loading…
Reference in a new issue