+ Add +jump/* to SPC h bindings + Generalize jump-to-bookmark To use ivy/helm specific jump-to-bookmark (like counsel-bookmark), better to remap bookmark-jump from their modules. + SPC f c => open .editorconfig
23 lines
677 B
EmacsLisp
23 lines
677 B
EmacsLisp
;;; private/hlissner/init.el -*- lexical-binding: t; -*-
|
|
|
|
;; I've swapped these keys on my keyboard
|
|
(setq x-super-keysym 'alt
|
|
x-alt-keysym 'meta
|
|
|
|
user-mail-address "henrik@lissner.net"
|
|
user-full-name "Henrik Lissner")
|
|
|
|
;; host-specific settings
|
|
(pcase (system-name)
|
|
("proteus"
|
|
(setq +doom-modeline-height 25
|
|
+doom-font (font-spec :family "Fira Mono" :size 10)
|
|
+doom-variable-pitch-font (font-spec :family "Fira Sans" :size 10)
|
|
+doom-unicode-font (font-spec :family "DejaVu Sans Mono" :size 10)
|
|
doom-ui-nlinum-lpad 3))
|
|
("halimede"
|
|
(setq +doom-modeline-height 27))
|
|
;; ("nereid")
|
|
;; ("io")
|
|
;; ("sao")
|
|
)
|