emacs/init.el
2025-12-06 06:09:42 -05:00

63 lines
2.9 KiB
EmacsLisp

(add-to-list 'load-path "~/.emacs.d/elisp")
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :extend nil :stipple nil :background "#25202a" :foreground "#cfccd2" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight regular :height 102 :width normal :foundry "xos4" :family "Screen"))))
'(line-number ((t (:inherit (shadow default) :background "gray9"))))
'(line-number-current-line ((t (:inherit line-number :foreground "dark goldenrod"))))
'(mode-line ((t (:box (:line-width (2 . 2) :color "grey75" :style released-button)))))
'(mode-line-active ((t (:inherit mode-line))))
'(tab-bar ((t (:inherit default :background "black" :foreground "white" :box nil)))))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(blink-cursor-mode nil)
'(circe-default-realname "narehate")
'(circe-default-user "narehate")
'(custom-enabled-themes nil)
'(custom-safe-themes
'("2422f18687980d29da5e276547171c99f1cc1b2cb4cdbec124a53e1f34143001"
"058ba0ed929f801fc4077617e816797654c7775382943520875642d5507d8696"
"44e6d6845e571402c149a12acbf698391e62928443b3d1924478bbc54a573b32"
"d323d7aa432e9d02647069b1ecc58b8c3ab2f1104a399c5df7427e8ddc13505e"
"ad7d874d137291e09fe2963babc33d381d087fa14928cb9d34350b67b6556b6d"
"0407bc59241a431e71d639f8fe8049f2490428a4c073b657edf5f5f915ae2aa0"
"f1c8202c772d1de83eda4765fe21429a528a4fb350a28394d3705fe9678ed1f9"
default))
'(elfeed-feeds '("https://bimshwel.com/?feed=rss2"))
'(package-selected-packages
'(abc-mode abyss-theme acme-theme circe dirvish elfeed
evangelion-theme exwm faff-theme helm inkpot-theme
inverse-acme-theme mingus nerd-icons pass vmd-mode w3m
ytdious))
'(rmail-spool-directory "/home/tate/Mail/INBOX")
'(tab-bar-mode t)
'(tool-bar-mode nil)
'(transient-mark-mode nil))
(require 'laptop-settings)
(require 'irc-settings)
(require 'appearance-settings)
(require 'keybind-settings)
(require 'blog-settings)
(require 'openbsd-knf-style)
(require 'exwm-settings)
(c-add-style "OpenBSD" openbsd-knf-style)
(setq c-default-style '((c-mode . "OpenBSD")))
;; melpa
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
;; Comment/uncomment this line to enable MELPA Stable if desired. See `package-archive-priorities`
;; and `package-pinned-packages`. Most users will not need or want to do this.
;;(add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
(package-initialize)