diff options
| author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-07-28 18:15:14 +0100 | 
|---|---|---|
| committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2022-07-28 18:15:14 +0100 | 
| commit | c217f961f01647a2cc3bbed102cab169c8436566 (patch) | |
| tree | 8ebded078d495f5262b95bfb0d0915ca8a3e841d /Emacs/.config/emacs | |
| parent | 389317368cce89f93a2f99186d7674f0258aeeda (diff) | |
| download | dotfiles-c217f961f01647a2cc3bbed102cab169c8436566.tar.gz dotfiles-c217f961f01647a2cc3bbed102cab169c8436566.tar.bz2 dotfiles-c217f961f01647a2cc3bbed102cab169c8436566.zip | |
(Emacs)~alpha 0.95->0.9,+height for keyword,+support for native comp
Also deleted my install script, check out
https://git.aryadevchavali.com:/oreodave/emacs.git for my Emacs build.
Diffstat (limited to 'Emacs/.config/emacs')
| -rw-r--r-- | Emacs/.config/emacs/early-init.el | 2 | ||||
| -rw-r--r-- | Emacs/.config/emacs/elisp/monokai-theme.el | 2 | ||||
| -rw-r--r-- | Emacs/.config/emacs/init.el | 4 | 
3 files changed, 5 insertions, 3 deletions
| diff --git a/Emacs/.config/emacs/early-init.el b/Emacs/.config/emacs/early-init.el index cb2ca71..afcb4ab 100644 --- a/Emacs/.config/emacs/early-init.el +++ b/Emacs/.config/emacs/early-init.el @@ -10,5 +10,5 @@  (push '(menu-bar-lines . 0) default-frame-alist)  (push '(tool-bar-lines . 0) default-frame-alist)  (push '(vertical-scroll-bars) default-frame-alist) -(push '(alpha . 95) default-frame-alist) +(push '(alpha . 90) default-frame-alist)  (advice-add #'x-apply-session-resources :override #'ignore) diff --git a/Emacs/.config/emacs/elisp/monokai-theme.el b/Emacs/.config/emacs/elisp/monokai-theme.el index c9bdd05..0e5204d 100644 --- a/Emacs/.config/emacs/elisp/monokai-theme.el +++ b/Emacs/.config/emacs/elisp/monokai-theme.el @@ -20,7 +20,7 @@   '(font-lock-constant-face ((t (:inherit font-lock-variable-name-face))))   '(font-lock-doc-face ((t (:foreground "#7f7f80" :inherit (font-lock-comment-face)))))   '(font-lock-function-name-face ((t (:foreground "#b6e63e")))) - '(font-lock-keyword-face ((t (:foreground "#fb2874" :family "Source Code Variable")))) + '(font-lock-keyword-face ((t (:foreground "#fb2874" :height 0.95 :family "Fira Code"))))   '(font-lock-negation-char-face ((t (:foreground "#9c91e4" :inherit (bold)))))   '(font-lock-preprocessor-face ((t (:foreground "#9c91e4" :inherit (bold)))))   '(font-lock-regexp-grouping-backslash ((t (:foreground "#9c91e4" :inherit (bold))))) diff --git a/Emacs/.config/emacs/init.el b/Emacs/.config/emacs/init.el index 3e6c101..d4d376d 100644 --- a/Emacs/.config/emacs/init.el +++ b/Emacs/.config/emacs/init.el @@ -35,7 +35,9 @@        (eval-print-last-sexp)))    (load bootstrap-file nil 'nomessage)) -(setq straight-use-package-by-default t +(setq straight-disable-native-compile nil +      straight-disable-native-compilation nil +      straight-use-package-by-default t        use-package-enable-imenu-support t        use-package-always-demand nil        use-package-always-defer nil | 
