dotfiles/openbsd/emacs.d/init.el
2022-07-03 14:41:52 -06:00

73 lines
2 KiB
EmacsLisp

;;; package --- Rawley OpenBSD init.el
;;; Commentary:
;;; This is my Emacs init.el for OpenBSD. OpenBSD has always been
;;; one of my favorite opeating systems, but I have never had hardware
;;; that can take advantage of it. Thankfully, I found a compatible
;;; WiFi card for my Librebooted x200, now I can use OpenBSD \o/
;;; Code:
(add-to-list 'default-frame-alist '(font . "UbuntuMono Nerd Font-15"))
(setq visible-bell nil)
(setq ring-bell-function 'ignore)
(setq-default tab-width 4)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(menu-bar-mode -1)
(show-paren-mode 1)
(recentf-mode 1)
(require 'package)
(add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/"))
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
(package-initialize)
(unless (package-installed-p 'use-package)
(package-install 'use-package))
(package-refresh-contents)
(eval-and-compile
(setq use-package-always-ensure t
use-package-expand-minimally t))
(require 'use-package)
(use-package zenburn-theme)
(load-theme 'zenburn t)
;; Language modes
(use-package d-mode)
(use-package go-mode)
(use-package markdown-mode
:ensure t)
;; Other packages
(use-package ivy)
(use-package helm)
(require 'helm)
;; Custom functions
(defun save-and-kill-current-buffer ()
(interactive)
(save-buffer)
(kill-current-buffer))
(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.
'(custom-safe-themes
'("70cfdd2e7beaf492d84dfd5f1955ca358afb0a279df6bd03240c2ce74a578e9e" default))
'(package-selected-packages
'(helm zenburn-theme md-mode markdown-mode ivy modus-themes use-package)))
(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.
)
;;; init.el ends here