Add a few tweaks to #emacs
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
;;; -*- lexical-binding: t; -*-
|
;;; -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(setq doom-theme 'doom-dracula)
|
(setq doom-theme 'doom-one)
|
||||||
|
|
||||||
;; Fonts
|
;; Fonts
|
||||||
(setq doom-font (font-spec :family "Iosevka" :size 15))
|
(setq doom-font (font-spec :family "Iosevka" :size 15))
|
||||||
|
|||||||
@ -36,6 +36,13 @@
|
|||||||
"C-h" #'evil-window-left
|
"C-h" #'evil-window-left
|
||||||
"C-l" #'evil-window-right))
|
"C-l" #'evil-window-right))
|
||||||
|
|
||||||
|
;; some handy alt shortcuts
|
||||||
|
:n "s-g" #'magit-status
|
||||||
|
:n "s-c" #'org-capture
|
||||||
|
;; Let's be like our friends Slack and Discord
|
||||||
|
:n "s-p" #'+ivy/project-search
|
||||||
|
:n "s-k" #'counsel-recentf
|
||||||
|
|
||||||
;; Leader tricks
|
;; Leader tricks
|
||||||
(:leader
|
(:leader
|
||||||
(:prefix "f"
|
(:prefix "f"
|
||||||
@ -102,10 +109,13 @@
|
|||||||
|
|
||||||
;;; Setup sending email with msmtp
|
;;; Setup sending email with msmtp
|
||||||
(setq send-mail-function 'sendmail-send-it
|
(setq send-mail-function 'sendmail-send-it
|
||||||
sendmail-program "/usr/local/bin/msmtp"
|
sendmail-program "/usr/local/bin/msmtp"
|
||||||
mail-specify-envelope-from t
|
mail-specify-envelope-from t
|
||||||
message-sendmail-envelope-from 'header
|
message-sendmail-envelope-from 'header
|
||||||
mail-envelope-from 'header)
|
mail-envelope-from 'header)
|
||||||
|
|
||||||
|
;; enable ivy buffer icons
|
||||||
|
(setq ivy-buffer-icons t)
|
||||||
|
|
||||||
;; Hide hidden files in treemacs
|
;; Hide hidden files in treemacs
|
||||||
(setq treemacs-show-hidden-files nil)
|
(setq treemacs-show-hidden-files nil)
|
||||||
|
|||||||
3
fish/.config/fish/functions/dt.fish
Normal file
3
fish/.config/fish/functions/dt.fish
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
function dt
|
||||||
|
dtach -A /tmp/dtach-$argv $argv
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user