diff options
-rw-r--r-- | .config/rofi/config.rasi | 1 | ||||
-rw-r--r-- | .emacs.d/init.el | 7 |
2 files changed, 5 insertions, 3 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi index d8eed3c..3b108ba 100644 --- a/.config/rofi/config.rasi +++ b/.config/rofi/config.rasi @@ -1,4 +1,5 @@ configuration { + font: "Iosevka 20"; modes: [ combi ]; combi-modes: [ window, drun, run ]; } diff --git a/.emacs.d/init.el b/.emacs.d/init.el index c0fd0fa..acad923 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -6,9 +6,10 @@ (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) -(if (file-directory-p "~/.backup") - (setq backup-directory-alist '(("." . "~/.backup"))) - (message "Directory does not exist: ~/.backup")) +(let ((backup-dir "~/.backup")) + (unless (file-directory-p backup-dir) + (make-directory backup-dir t)) + (setq backup-directory-alist `(("." . ,backup-dir)))) (setq backup-by-copying t ; Don't delink hardlinks |