Initial doom config
This commit is contained in:
commit
6fabb2cc92
3 changed files with 247 additions and 0 deletions
23
config.el
Normal file
23
config.el
Normal file
|
@ -0,0 +1,23 @@
|
|||
(setq user-full-name "Charlie Root")
|
||||
(setq user-mail-address "charlie@charlieroot.dev")
|
||||
|
||||
|
||||
(setq doom-font (font-spec :family "Iosevka NF" :size 24)
|
||||
doom-variable-pitch-font (font-spec :family "Lexend" :size 24))
|
||||
|
||||
;;; :ui modeline
|
||||
;; An evil mode indicator is redundant with cursor shape
|
||||
(setq doom-modeline-modal nil)
|
||||
|
||||
;;; :editor evil
|
||||
;; Focus new window after splitting
|
||||
(setq evil-split-window-below t
|
||||
evil-vsplit-window-right t)
|
||||
|
||||
(after! nix-mode
|
||||
(set-formatter! 'alejandra '("alejandra" "--quiet") :modes '(nix-mode)))
|
||||
|
||||
;; Fixes since I use fish as my shell
|
||||
(setq shell-file-name (executable-find "bash"))
|
||||
(setq-default vterm-shell (executable-find "fish"))
|
||||
(setq-default explicit-shell-file-name (executable-find "fish"))
|
Loading…
Add table
Add a link
Reference in a new issue