diff options
author | salad <fmoenne-@student.le-101.fr> | 2020-12-03 14:59:42 +0100 |
---|---|---|
committer | salad <fmoenne-@student.le-101.fr> | 2020-12-03 14:59:42 +0100 |
commit | d16e99bf961e3bfd5b882d85c7f972a6becb1bec (patch) | |
tree | d6f054c36413e39a8311fb0857576b025638b076 /.doom.d/config.el | |
parent | remote (diff) | |
download | dotfiles-d16e99bf961e3bfd5b882d85c7f972a6becb1bec.tar.gz dotfiles-d16e99bf961e3bfd5b882d85c7f972a6becb1bec.tar.bz2 dotfiles-d16e99bf961e3bfd5b882d85c7f972a6becb1bec.tar.xz dotfiles-d16e99bf961e3bfd5b882d85c7f972a6becb1bec.tar.zst dotfiles-d16e99bf961e3bfd5b882d85c7f972a6becb1bec.zip |
update doom.d
Diffstat (limited to '')
-rw-r--r-- | .doom.d/config.el | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/.doom.d/config.el b/.doom.d/config.el index 3ea0925..ac7a4c9 100644 --- a/.doom.d/config.el +++ b/.doom.d/config.el @@ -19,12 +19,14 @@ ;; ;; They all accept either a font-spec, font string ("Input Mono-12"), or xlfd ;; font string. You generally only need these two: +;;(setq doom-font (font-spec ("DejaVu Saans Mono") :size 16)) (setq doom-font (font-spec :family "monospace" :size 16)) ;; There are two ways to load a theme. Both assume the theme is installed and ;; available. You can either set `doom-theme' or manually load a theme with the ;; `load-theme' function. This is the default: -(setq doom-theme 'doom-one) +;;(setq doom-theme 'doom-one) +(setq doom-theme 'doom-gruvbox) ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads! @@ -34,6 +36,25 @@ ;; numbers are disabled. For relative line numbers, set this to `relative'. (setq display-line-numbers-type `relative) +(require 'shell-pop) +(require 'zone) +(zone-when-idle 120) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(shell-pop-shell-type (quote ("ansi-term" "*ansi-term*" (lambda nil (ansi-term shell-pop-term-shell))))) + '(shell-pop-term-shell "/bin/zsh") + '(shell-pop-universal-key "<f5>") + '(shell-pop-window-size 30) + '(shell-pop-full-span t) + '(shell-pop-window-position "bottom") + '(shell-pop-autocd-to-working-dir t) + '(shell-pop-restore-window-configuration t) + '(shell-pop-cleanup-buffer-at-process-exit t)) + +;;(setq fancy-splash-image "~/Images/wallpapers/night.png") ;; Here are some additional functions/macros that could help you configure Doom: ;; |