Compare commits

...

10 Commits

Author SHA1 Message Date
~d6 da9d8ee705 updates 2023-09-06 08:58:47 -04:00
~d6 935d33bc40 merge 2023-07-17 13:25:42 -04:00
~d6 d407545846 ignore eln 2023-07-17 13:25:30 -04:00
~d6 14cc6175af gemini styles 2023-04-18 09:20:37 -04:00
~d6 48aacbe1ed updates 2023-04-10 00:35:23 -04:00
~d6 d272db56c9 new mastodon settings 2022-10-28 10:52:26 -04:00
~d6 d3ed9fc657 ignore mastodon detritis 2022-10-27 19:30:47 -04:00
~d6 efe78ee659 support emoji, video, and mastodon 2022-10-27 19:29:48 -04:00
~d6 f7c04b0831 toggle trailing whitespace 2022-10-26 23:09:27 -04:00
~d6 79d7e17acd ignore url cache 2022-10-26 23:09:09 -04:00
2 changed files with 102 additions and 10 deletions

View File

@ -15,3 +15,9 @@ eclipse.jdt.ls/test-runner/junit-platform-console-standalone.jar
org-roam.db
workspace
elpy
url/cache
mastodon.plstore
emojis
persist
elncache
*.eln

106
init.el
View File

@ -81,7 +81,7 @@
"Fira Code"))
;; default size to use when loading fonts
(defvar my/font-size 16)
(defvar my/font-size 24)
;; see if a given font exists
(defun my/has-font (font)
@ -172,6 +172,12 @@
(setq all-the-icons-extension-icon-alist
(cons (cons "tal" icon) all-the-icons-extension-icon-alist))))
;; install newer fonts
(use-package nerd-icons
:config (add-to-list
'nerd-icons-extension-icon-alist
'("tal" nerd-icons-faicon "nf-fa-recycle" :face nerd-icons-dcyan)))
;; show function names in modeline
(which-function-mode t)
@ -210,6 +216,9 @@
;; distraction free writing
(use-package writeroom-mode)
;; better hex editing
(use-package nhexl-mode)
;; C-c <left> restore old buffer view after popups
(use-package winner
:config (winner-mode 1))
@ -255,7 +264,7 @@
:config (add-hook 'after-init-hook 'global-company-mode))
(defvar use-lsp)
(setq use-lsp (equal (system-name) "cult"))
(setq use-lsp nil)
;; when not using lsp use hippie expand
(when (not use-lsp)
@ -276,6 +285,8 @@
try-complete-lisp-symbol-partially
try-complete-lisp-symbol)))
(use-package eglot)
;; Posframe is a pop-up tool that must be manually installed for dap-mode
(use-package posframe
:if use-lsp)
@ -427,6 +438,8 @@
;; ;; git-timemachine
;; (use-package git-timemachine)
(use-package haskell-mode)
;; json
(use-package json-mode)
@ -442,7 +455,25 @@
:host github
:repo "non/uxntal-mode")
:bind ("C-c d" . uxntal-explain-word)
:config (setq uxntal-mode-strict-comments nil))
:bind ("C-c C-c" . compile)
:config (setq uxntal-mode-strict-comments nil)
(setq compilation-read-command nil))
;; Helper for compilation. Close the compilation window if
;; there was no error at all.
(defun compilation-exit-autoclose (status code msg)
;; If M-x compile exists with a 0
(when (and (eq status 'exit) (zerop code))
;; then bury the *compilation* buffer, so that C-x b doesn't go there
(bury-buffer)
;; and delete the *compilation* window
(delete-window (get-buffer-window (get-buffer "*compilation*"))))
;; Always return the anticipated result of compilation-exit-message-function
(cons msg code))
;; Specify my function (maybe I should have done a lambda function)
(setq compilation-exit-message-function 'compilation-exit-autoclose)
;; lua
(use-package lua-mode)
@ -453,9 +484,6 @@
:host github
:repo "Kaali/pico8-mode"))
;; C-c C-c for M-x compile
(global-set-key "\C-c\C-c" 'compile)
;; bazel
(use-package bazel
:straight (bazel :type git
@ -514,11 +542,45 @@
:config
(setq elpher-default-url-type "gemini://"))
(use-package gemini-mode)
;; mastodon
(use-package mastodon
:config
(setq mastodon-instance-url "https://merveilles.town"
mastodon-active-user "d6"
mastodon-tl--show-avatars t
mastodon-media--avatar-height 40
mastodon-media--enable-image-caching t))
;; read RFCs
(use-package rfc-mode
:config
(setq rfc-mode-directory (expand-file-name "~/w/rfc/")))
;; ;; pdf/latex
;; (use-package doc-view
;; :custom doc-view-resolution 1600
;; doc-view-scale-internally nil)
;; view videos with mpv
(use-package mpv)
;; emoji support
(use-package emojify)
;; i-ching
(use-package i-ching)
;; dumb-jump?
;; (require 'dumb-jump)
;; (setq dumb-jump-force-searcher 'ag)
;; (add-hook 'xref-backend-functions #'dumb-jump-xref-activate)
;; shx
;; shell-pop
;; local copy in .emacs.d/lisp
(require 'etags-select)
@ -531,15 +593,23 @@
(setq whitespace-style '(newline tab-mark))
(setq-default indent-tabs-mode nil
tab-width 4
c-basic-offset 4
show-trailing-whitespace t)
c-basic-offset 4)
(add-hook 'prog-mode-hook
(lambda () (progn
(setq show-trailing-whitespace t))))
;; handy function to toggle tabs
(defun toggle-indent-tabs ()
"Toggle tabs on/off"
"Toggle tabs on/off."
(interactive)
(setq indent-tabs-mode (not indent-tabs-mode)))
;;
(defun toggle-trailing-whitespace ()
"Toggle trailing whitespace visualization."
(interactive)
(setq show-trailing-whitespace (not show-trailing-whitespace)))
;; handy function to regenerate tags
(defun my/regenerate-tags ()
"Regenerate tags using ets."
@ -559,7 +629,7 @@
;; spell checking as you type in text-mode
;(autoload 'flyspell-mode-on "flyspell" "On-the-fly ispell." t)
(add-hook 'text-mode-hook 'flyspell-mode-on)
;;(add-hook 'text-mode-hook 'flyspell-mode-on)
;; use nicer diff colors
(defun my/update-diff-colors ()
@ -586,3 +656,19 @@
(provide 'init)
;;; init.el ends here
(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-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.
'(gemini-heading-face-1 ((t (:inherit bold :height 1.4))))
'(gemini-heading-face-2 ((t (:inherit bold :height 1.2))))
'(gemini-heading-face-3 ((t (:inherit bold :height 1.1))))
'(markdown-code-face ((t nil))))