This commit is contained in:
mokou 2020-11-21 20:15:03 +01:00
parent 19ae195638
commit 35abeb58fc
4 changed files with 13 additions and 8 deletions

View file

@ -54,6 +54,7 @@ set -x XDG_CURRENT_DESKTOP Unity
# General Aliases # General Aliases
alias editconfig "chezmoi edit ~/.config/fish/config.fish; and chezmoi apply; and source ~/.config/fish/config.fish" alias editconfig "chezmoi edit ~/.config/fish/config.fish; and chezmoi apply; and source ~/.config/fish/config.fish"
alias j "z" alias j "z"
alias c "cargo"
alias emacsd "emacs --daemon" alias emacsd "emacs --daemon"
alias jo "zo" alias jo "zo"
alias be "bundle exec" alias be "bundle exec"

View file

@ -1,6 +1,6 @@
;;; ~/.doom.d/config.el -*- lexical-binding: t; -*- ;;; ~/.doom.d/config.el -*- lexical-binding: t; -*-
(setq doom-theme 'doom-sourcerer) (load-theme 'base16-chalk t)
;; Set to 2 spaces ;; Set to 2 spaces
(setq default-tab-width 2) (setq default-tab-width 2)
@ -35,6 +35,9 @@
;; Enable Mercurial support for git-gutter ;; Enable Mercurial support for git-gutter
(setq git-gutter:handled-backends '(git hg)) (setq git-gutter:handled-backends '(git hg))
;; Load auth keys from .authinfo
(setq auth-sources '("~/.authinfo"))
;; Enable editorconfig ;; Enable editorconfig
(editorconfig-mode 1) (editorconfig-mode 1)
@ -51,8 +54,7 @@
;; use https://github.com/grobian/html2text ;; use https://github.com/grobian/html2text
(setq mu4e-html2text-command "html2text") (setq mu4e-html2text-command "html2text")
;; Switch to rust-analyzer (setq rustic-lsp-server 'rls)
(setq rustic-lsp-server 'rust-analyzer)
;; Org configuration ;; Org configuration
(after! org (after! org

View file

@ -20,7 +20,7 @@
:ui :ui
;;deft ;;deft
doom ;;doom
;;doom-dashboard ;;doom-dashboard
;;doom-quit ;;doom-quit
;;fill-column ;;fill-column
@ -28,7 +28,7 @@
;;hydra ;;hydra
indent-guides indent-guides
;;ligatures ;;ligatures
minimap ;;minimap
modeline modeline
nav-flash nav-flash
;;neotree ;;neotree
@ -36,7 +36,7 @@
(popup +defaults) (popup +defaults)
;;tabs ;;tabs
;;treemacs ;;treemacs
unicode ;;unicode
vc-gutter vc-gutter
vi-tilde-fringe vi-tilde-fringe
window-select window-select
@ -90,7 +90,8 @@
(lookup (lookup
+docsets) +docsets)
lsp lsp
magit (magit
+forge)
;;make ;;make
;;pass ;;pass
;;pdf ;;pdf
@ -168,7 +169,7 @@
yaml yaml
:email :email
(mu4e +gmail) ;;(mu4e +gmail)
;;notmuch ;;notmuch
;;(wanderlust +gmail) ;;(wanderlust +gmail)

View file

@ -10,3 +10,4 @@
(package! editorconfig) (package! editorconfig)
(package! gruvbox-theme) (package! gruvbox-theme)
(package! org-pomodoro) (package! org-pomodoro)
(package! base16-theme)