Skip to content

Instantly share code, notes, and snippets.

@vancleve
Created September 27, 2023 19:11
Show Gist options
  • Save vancleve/6d65f8771ac84ede1c61869bd908d724 to your computer and use it in GitHub Desktop.
Save vancleve/6d65f8771ac84ede1c61869bd908d724 to your computer and use it in GitHub Desktop.
config.el
;;; config.el --- Doom sandbox -*- lexical-binding: t; -*-
;;;
(map! :g
"C-x <left>" #'windmove-left
"C-x <right>" #'windmove-right
"C-x <up>" #'windmove-up
"C-x <down>" #'windmove-down
"C-<left>" #'backward-sexp
"C-<right>" #'forward-sexp
"s-<left>" #'move-beginning-of-line
"s-<right>" #'move-end-of-line
"s-<up>" #'beginning-of-buffer
"s-<down>" #'end-of-buffer
"s-x" #'kill-region
"s-w" #'delete-frame
"s-W" #'delete-window
"C-x k" #'doom/kill-this-buffer-in-all-windows
"C-x K" #'kill-buffer)
(load-theme 'modus-operandi t)
(setq doom-font (font-spec :family "Fira Mono" :size 12)
doom-variable-pitch-font (font-spec :family "Fira Sans")
doom-symbol-font (font-spec :family "JuliaMono"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment