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))) (remove ".git" projectile-project-root-files-bottom-up)))
;; Set fonts ;; Set fonts
(setq fontsize 18) (setq fontsize 14)
(setq monofontfam "JetBrainsMono Nerd Font Mono") (setq monofontfam "JetBrainsMono Nerd Font Mono")
(setq doom-font (font-spec :family monofontfam :size fontsize) (setq doom-font (font-spec :family monofontfam :size fontsize)
doom-variable-pitch-font (font-spec :family monofontfam :size fontsize) doom-variable-pitch-font (font-spec :family monofontfam :size fontsize)
@ -104,7 +104,7 @@ Version 2015-08-22"
(defun browse-host-web (url) (defun browse-host-web (url)
"Browse URL with Firefox/LibreWolf/IceCat" "Browse URL with Firefox/LibreWolf/IceCat"
(interactive "sURL: ") (interactive "sURL: ")
(shell-command (concat "librewolf" url))) (shell-command (concat "librewolf " url)))
(setq browse-url-browser-function 'browse-host-web) (setq browse-url-browser-function 'browse-host-web)
@ -274,12 +274,16 @@ If point was already at that position, move point to beginning of line."
(setq dictionary-server "dict.org") (setq dictionary-server "dict.org")
;;;; dired ;;;; casual
(map! :after dired (map! :after dired
:map dired-mode-map :map dired-mode-map
"C-o" #'casual-dired-tmenu) "C-o" #'casual-dired-tmenu)
(require 'casual-bookmarks)
(keymap-set bookmark-bmenu-mode-map "C-o" #'casual-bookmarks-tmenu)
;;;; elpher ;;;; 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-buffer-name-string "vterm %s")
(setq vterm-copy-exclude-prompt t) (setq vterm-copy-exclude-prompt t)
(setq vterm-ignore-blink-cursor nil) (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 ;;rest ; Emacs as a REST client
;;rst ; ReST in peace ;;rst ; ReST in peace
;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"} ;;(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 ;;scala ; java, but good
;;(scheme +guile) ; a fully conniving family of lisps ;;(scheme +guile) ; a fully conniving family of lisps
sh ; she sells {ba,z,fi}sh shells on the C xor sh ; she sells {ba,z,fi}sh shells on the C xor

View File

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

View File

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