From 06529caa7a70bd9ca5f203fa4eaed90c969ef6b4 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 20 Apr 2021 11:06:32 +0200 Subject: [PATCH] added custom bookmarks location --- .config/doom/bookmarks | 10 ++++++++++ .config/doom/config.el | 2 ++ 2 files changed, 12 insertions(+) create mode 100644 .config/doom/bookmarks diff --git a/.config/doom/bookmarks b/.config/doom/bookmarks new file mode 100644 index 0000000..bf318a1 --- /dev/null +++ b/.config/doom/bookmarks @@ -0,0 +1,10 @@ +;;;; Emacs Bookmark Format Version 1 ;;;; -*- coding: utf-8-emacs -*- +;;; This format is meant to be slightly human-readable; +;;; nevertheless, you probably don't want to edit it. +;;; -*- End Of Bookmark File Format Version Stamp -*- +(("bspwm" + (filename . "~/.config/bspwm/bspwmrc") + (front-context-string . "#!/bin/bash\n\n# M") + (rear-context-string) + (position . 1)) +) diff --git a/.config/doom/config.el b/.config/doom/config.el index a1a5d0e..5bd3257 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -53,3 +53,5 @@ ;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how ;; they are implemented. (setq doom-font (font-spec :family "FiraCode Nerd Font Mono" :size 13) ) + +(setq bookmark-default-file "~/.config/doom/bookmarks")