(emacs) remove trial font face, new packages

This commit is contained in:
Gabriel Simmer 2023-07-25 19:47:43 +01:00
parent fa14a1e45f
commit 3cc7875baa
Signed by: arch
GPG key ID: C81B106D46C5B875

View file

@ -2,8 +2,8 @@
(setq inhibit-startup-message t) (setq inhibit-startup-message t)
(setq auto-save-default nil) (setq auto-save-default nil)
(setq make-backup-files nil) (setq make-backup-files nil)
(cond ((find-font (font-spec :name "Berkeley Mono Trial")) (cond ((find-font (font-spec :name "Berkeley Mono"))
(set-face-attribute 'default nil :font "Berkeley Mono Trial" :height 120))) (set-face-attribute 'default nil :font "Berkeley Mono" :height 120)))
(global-set-key (kbd "<escape>") 'keyboard-escape-quit) (global-set-key (kbd "<escape>") 'keyboard-escape-quit)
(scroll-bar-mode -1) (scroll-bar-mode -1)
(tool-bar-mode -1) (tool-bar-mode -1)
@ -163,6 +163,8 @@
:hook (k8s-mode . yas-minor-mode)) :hook (k8s-mode . yas-minor-mode))
(use-package kubernetes :straight t) (use-package kubernetes :straight t)
(use-package rust-mode :straight t) (use-package rust-mode :straight t)
(use-package tree-sitter :straight t)
(use-package tree-sitter-indent :straight t)
(use-package markdown-mode :straight t) (use-package markdown-mode :straight t)
(use-package olivetti :straight t) (use-package olivetti :straight t)
(use-package copilot (use-package copilot
@ -173,8 +175,12 @@
(interactive) (interactive)
(or (copilot-accept-completion) (or (copilot-accept-completion)
(company-indent-or-complete-common nil))) (company-indent-or-complete-common nil)))
(use-package elfeed :straight t)
; modify company-mode behaviors (use-package chatgpt-shell
:straight t)
; modify company-mode behaviors
(with-eval-after-load 'company (with-eval-after-load 'company
; disable inline previews ; disable inline previews
(delq 'company-preview-if-just-one-frontend company-frontends) (delq 'company-preview-if-just-one-frontend company-frontends)