(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.
This commit is contained in:
2022-07-28 18:15:14 +01:00
parent 389317368c
commit c217f961f0
4 changed files with 5 additions and 11 deletions

View File

@@ -10,5 +10,5 @@
(push '(menu-bar-lines . 0) default-frame-alist) (push '(menu-bar-lines . 0) default-frame-alist)
(push '(tool-bar-lines . 0) default-frame-alist) (push '(tool-bar-lines . 0) default-frame-alist)
(push '(vertical-scroll-bars) 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) (advice-add #'x-apply-session-resources :override #'ignore)

View File

@@ -20,7 +20,7 @@
'(font-lock-constant-face ((t (:inherit font-lock-variable-name-face)))) '(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-doc-face ((t (:foreground "#7f7f80" :inherit (font-lock-comment-face)))))
'(font-lock-function-name-face ((t (:foreground "#b6e63e")))) '(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-negation-char-face ((t (:foreground "#9c91e4" :inherit (bold)))))
'(font-lock-preprocessor-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))))) '(font-lock-regexp-grouping-backslash ((t (:foreground "#9c91e4" :inherit (bold)))))

View File

@@ -35,7 +35,9 @@
(eval-print-last-sexp))) (eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage)) (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-enable-imenu-support t
use-package-always-demand nil use-package-always-demand nil
use-package-always-defer nil use-package-always-defer nil

View File

@@ -1,8 +0,0 @@
#!/usr/bin/env sh
git clone --depth 1 --branch emacs-27.2 master git://git.sv.gnu.org/emacs.git .;
./configure --with-xwidgets -with-threads --with-harfbuzz --with-jpeg \
--with-json --with-modules;
make;
sudo make install;