This commit is contained in:
Jeffrey Serio 2024-11-09 13:30:14 -06:00
parent f42330621d
commit 36f8eb7b52
4 changed files with 21 additions and 5 deletions

View File

@ -17,7 +17,7 @@
(remove ".git" projectile-project-root-files-bottom-up)))
;; Set fonts
(setq fontsize 18)
(setq fontsize 14)
(setq monofontfam "JetBrainsMono Nerd Font Mono")
(setq doom-font (font-spec :family monofontfam :size fontsize)
doom-variable-pitch-font (font-spec :family monofontfam :size fontsize)
@ -274,12 +274,16 @@ If point was already at that position, move point to beginning of line."
(setq dictionary-server "dict.org")
;;;; dired
;;;; casual
(map! :after dired
:map dired-mode-map
"C-o" #'casual-dired-tmenu)
(require 'casual-bookmarks)
(keymap-set bookmark-bmenu-mode-map "C-o" #'casual-bookmarks-tmenu)
;;;; elpher
@ -294,3 +298,11 @@ If point was already at that position, move point to beginning of line."
(setq vterm-buffer-name-string "vterm %s")
(setq vterm-copy-exclude-prompt t)
(setq vterm-ignore-blink-cursor nil)
;;;; mastodon.el
(setq mastodon-instance-url "https://fedi.hyperreal.coffee"
mastodon-active-user "hyperreal"
mastodon-use-emojify t)

View File

@ -162,7 +162,7 @@
;;rest ; Emacs as a REST client
;;rst ; ReST in peace
;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
;;(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
;;scala ; java, but good
;;(scheme +guile) ; a fully conniving family of lisps
sh ; she sells {ba,z,fi}sh shells on the C xor

View File

@ -9,7 +9,7 @@
;(package! some-package)
(package! apheleia)
(package! autothemer)
(package! casual-dired)
(package! casual)
(package! catppuccin-theme)
(package! dockerfile-mode)
(package! elpher)
@ -19,6 +19,7 @@
(package! helpful)
(package! just-mode)
(package! license-templates)
(package! mastodon)
(package! org-superstar)
(package! ox-hugo)
(package! pdf-tools)

View File

@ -105,6 +105,9 @@ add-zsh-hook -Uz chpwd() { print -Pn "\e]2;%m:%2~\a" }
# direnv
eval "$(direnv hook zsh)"
# starship.rs
eval "$(starship init zsh)"
# Ensure always loading the latest version of the emacs-vterm-zsh.sh file
if [[ "$INSIDE_EMACS" = 'vterm' ]] \
&& [[ -n ${EMACS_VTERM_PATH} ]] \