Add notes about settings in .Xdefaults
This commit is contained in:
parent
a75647fd4f
commit
168807b974
1 changed files with 27 additions and 0 deletions
|
@ -274,6 +274,12 @@
|
|||
(menu-bar-mode -1)
|
||||
#+END_SRC
|
||||
|
||||
I also do this in my =.Xdefaults= file, as that is applied sooner:
|
||||
|
||||
#+BEGIN_SRC conf-xdefaults :tangle no
|
||||
Emacs.menuBar: off
|
||||
#+END_SRC
|
||||
|
||||
** Turn-off tool bar
|
||||
|
||||
The toolbar is another such thing, and it takes up quite a bit more
|
||||
|
@ -285,6 +291,13 @@
|
|||
(tool-bar-mode -1)
|
||||
#+END_SRC
|
||||
|
||||
I also do this in my =.Xdefaults= as those settings are applied
|
||||
sooner.
|
||||
|
||||
#+BEGIN_SRC conf-xdefaults :tangle no
|
||||
Emacs.toolBar: off
|
||||
#+END_SRC
|
||||
|
||||
** Turn-off blinking cursor
|
||||
|
||||
I suppose a blinking cursor doesn't get lost very easily. But on
|
||||
|
@ -298,6 +311,13 @@
|
|||
(blink-cursor-mode -1)
|
||||
#+END_SRC
|
||||
|
||||
I also do this in my =.Xdefaults=, as those settings are applied
|
||||
sooner.
|
||||
|
||||
#+BEGIN_SRC conf-xdefaults :tangle no
|
||||
Emacs.cursorBlink: off
|
||||
#+END_SRC
|
||||
|
||||
** Turn-off line numbers
|
||||
|
||||
As I'm currently using svg-mode-line-themes[fn:2] for my ~mode-line~
|
||||
|
@ -395,6 +415,13 @@
|
|||
(font . "Fantasque Sans Mono-13")
|
||||
#+END_SRC
|
||||
|
||||
I also do this in my =.Xdefaults= as those settings are applied
|
||||
sooner.
|
||||
|
||||
#+BEGIN_SRC conf-xdefaults :tangle no
|
||||
Emacs.font: Fantasque Sans Mono-13
|
||||
#+END_SRC
|
||||
|
||||
*** Hide the scroll bar
|
||||
|
||||
The scroll-bar is almost just as informative as the current line
|
||||
|
|
Loading…
Reference in a new issue