diff options
author | Leonardo Santiago <[email protected]> | 2024-10-01 09:27:24 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-10-01 09:27:24 -0300 |
commit | 4ecc3286e30fe70d4a03f03929d699ff6f3c284a (patch) | |
tree | 451866d565fc9ca71d5862fe337c4d5c9eea88ec /modules | |
parent | c95d1b73da6d4c97fc48bf5f7b3c73cbb16681b5 (diff) |
disable scroll-bar, set line numbers to show
Diffstat (limited to 'modules')
-rw-r--r-- | modules/emacs/README.org | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/emacs/README.org b/modules/emacs/README.org index cb7c4da..bca3cc2 100644 --- a/modules/emacs/README.org +++ b/modules/emacs/README.org @@ -18,8 +18,12 @@ You can also use it as a ~nixosModule~, in order to add additional packages like #+begin_src emacs-lisp :tangle yes (menu-bar-mode -1) (tool-bar-mode -1) +(scroll-bar-mode -1) + +(global-display-line-numbers-mode 1) (setq use-short-answers t) +(setq inhibit-startup-message t) (setq ring-bell-function 'ignore) (setq-default indent-tabs-mode nil) |