diff options
author | Adrian Kummerlaender | 2020-08-27 15:31:17 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2020-08-27 15:31:17 +0200 |
commit | 191438718de6175cb0cff457005ed312cc4e8fd8 (patch) | |
tree | 2e7057252c10c05f9264e6e655722129f30c4df8 /gui/conf | |
parent | 65dfa1de8c33cda799a61cc15a34317a5a50093c (diff) | |
download | nixos_home-191438718de6175cb0cff457005ed312cc4e8fd8.tar nixos_home-191438718de6175cb0cff457005ed312cc4e8fd8.tar.gz nixos_home-191438718de6175cb0cff457005ed312cc4e8fd8.tar.bz2 nixos_home-191438718de6175cb0cff457005ed312cc4e8fd8.tar.lz nixos_home-191438718de6175cb0cff457005ed312cc4e8fd8.tar.xz nixos_home-191438718de6175cb0cff457005ed312cc4e8fd8.tar.zst nixos_home-191438718de6175cb0cff457005ed312cc4e8fd8.zip |
Use feature/native-comp Emacs build from overlay
Diffstat (limited to 'gui/conf')
-rw-r--r-- | gui/conf/init.el | 15 | ||||
-rw-r--r-- | gui/conf/metakr.org | 9 |
2 files changed, 12 insertions, 12 deletions
diff --git a/gui/conf/init.el b/gui/conf/init.el index 674ebd0..e355071 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -32,6 +32,8 @@ '(kill-ring search-ring)) (setq savehist-file "~/.emacs.d/savehist") +(global-eldoc-mode -1) + (setq mouse-wheel-scroll-amount '(5)) (setq mouse-wheel-progressive-speed nil) (setq fast-but-imprecise-scrolling t) @@ -54,14 +56,6 @@ (add-hook 'prog-mode-hook 'display-line-numbers-mode) -(require 'package) -(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) -(package-initialize) - -(unless (package-installed-p 'use-package) - (package-refresh-contents) - (package-install 'use-package)) - (eval-when-compile (require 'use-package)) (set-face-attribute 'default nil :family "Iosevka") @@ -69,7 +63,10 @@ (set-face-attribute 'variable-pitch nil :family "Source Sans Pro" :height 1.1) (load-library "custom-runtime-env") -(load-library "akr-theme") + +(use-package akr-theme + :config + (enable-theme 'akr)) (use-package gcmh ; noticeably reduces unwanted GC pauses when editing e.g. large fancy org files :ensure t diff --git a/gui/conf/metakr.org b/gui/conf/metakr.org index 81ecf8e..0cb6448 100644 --- a/gui/conf/metakr.org +++ b/gui/conf/metakr.org @@ -308,14 +308,17 @@ For quick iteration all colors are stored in a table. :foreground @org-tag) (org-block-begin-line :inherit fixed-pitch - :background @org-block-line) + :background @org-block-line + :extend t) (org-block-end-line :inherit fixed-pitch - :background @org-block-line) + :background @org-block-line + :extend t) (org-block :background @org-block-bg :inherit fixed-pitch - :height 0.9) + :height 0.9 + :extend t) (org-priority :inherit fixed-pitch :weight normal) |