Separated nyxt into file, added themes, etc

This commit is contained in:
opal
2021-12-21 00:43:41 -08:00
parent 7a42fc0542
commit a731c61582
5 changed files with 191 additions and 36 deletions

View File

@@ -19,6 +19,10 @@
;; Use straight.el for use-package expressions
(straight-use-package 'use-package)
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")
("elpa" . "https://elpa.gnu.org/packages/")))
(scroll-bar-mode -1) ;; Disable scroll bar
(tool-bar-mode -1) ;; Disable tool bar menu
(tooltip-mode -1) ;; Disable tooltips
@@ -95,6 +99,12 @@
:bind
("<f5>" . modus-themes-toggle))
;; ;; Doing some doom themes for a while.
;; (use-package doom-themes
;; :straight t
;; :init
;; (load-theme 'doom-gruvbox))
(set-face-attribute 'default nil :font "Fira Code" :height 125 :weight 'medium)
(set-face-attribute 'variable-pitch nil :font "Fira Sans" :height 1.0 :weight 'regular)
(set-face-attribute 'fixed-pitch nil :font "Fira Code" :height 1.0 :weight 'medium)
@@ -130,6 +140,10 @@
;; Buffers
"bd" #'kill-buffer
;; Terminal/Shell
"tt" #'term
"te" #'eshell
;; Org
; Babel
"obt" #'org-babel-tangle
@@ -394,6 +408,8 @@
evil))
(add-hook 'prog-mode-hook #'parinfer-mode)))
(use-package sly :straight t)
(use-package magit
:straight t)