Compare commits

...

2 Commits

Author SHA1 Message Date
fbd1f6fca5 Added git alias to clear merged branches. 2023-10-30 16:18:05 +13:00
e6d5aa3472 Override color for comments in doom theme. 2023-10-30 16:12:37 +13:00
2 changed files with 7 additions and 0 deletions

View File

@ -10,3 +10,6 @@
gpgsign = true
[gpg]
format = ssh
[alias]
sweep = !"git branch -d $(git branch --merged | grep -vw $(git rev-parse --abbrev-ref HEAD))"

View File

@ -113,3 +113,7 @@
'((:results . "silent") ;
(:session . "default") ; The default tmux session to send code to
(:socket . nil))) ; The default tmux socket to communicate with
;; Fix comment colors
(set-face-foreground 'font-lock-string-face "green")
(set-face-foreground 'font-lock-comment-face "green")