misc small updates
This commit is contained in:
parent
7903f0510f
commit
61fcc9c7ae
6 changed files with 49 additions and 23 deletions
|
@ -387,13 +387,13 @@
|
||||||
"C-S-a" #'mark-whole-buffer
|
"C-S-a" #'mark-whole-buffer
|
||||||
"C-z" #'undo
|
"C-z" #'undo
|
||||||
"C-S-Z" #'undo-redo
|
"C-S-Z" #'undo-redo
|
||||||
|
"C-S-E" #'+vertico/embark-export-write
|
||||||
"C-w" #'kill-buffer
|
"C-w" #'kill-buffer
|
||||||
"C-f" #'+default/search-buffer
|
"C-f" #'+default/search-buffer
|
||||||
"C-g" #'vertico-repeat
|
"C-g" #'vertico-repeat
|
||||||
"C-s" #'save-buffer
|
"C-s" #'save-buffer
|
||||||
"C-;" #'comment-dwim
|
"C-;" #'comment-dwim
|
||||||
"C-/" #'comment-line
|
"C-/" #'comment-line
|
||||||
"C-q" #'kill-emacs
|
|
||||||
"C-M-<up>" #'next-window-any-frame
|
"C-M-<up>" #'next-window-any-frame
|
||||||
"C-M-<down>" #'previous-window-any-frame
|
"C-M-<down>" #'previous-window-any-frame
|
||||||
"C-<up>" #'backward-paragraph
|
"C-<up>" #'backward-paragraph
|
||||||
|
@ -589,7 +589,7 @@
|
||||||
"O" #'meow-to-block
|
"O" #'meow-to-block
|
||||||
"p" #'meow-yank
|
"p" #'meow-yank
|
||||||
"q" #'meow-quit
|
"q" #'meow-quit
|
||||||
"Q" #'meow-goto-line
|
;; "Q" #'meow-goto-line
|
||||||
"r" #'meow-replace
|
"r" #'meow-replace
|
||||||
"R" #'meow-swap-grab
|
"R" #'meow-swap-grab
|
||||||
"s" #'meow-kill
|
"s" #'meow-kill
|
||||||
|
@ -600,7 +600,7 @@
|
||||||
"w" #'meow-mark-word
|
"w" #'meow-mark-word
|
||||||
"W" #'meow-mark-symbol
|
"W" #'meow-mark-symbol
|
||||||
"x" #'meow-line
|
"x" #'meow-line
|
||||||
"X" #'meow-goto-line
|
"X" #'consult-goto-line
|
||||||
"y" #'meow-save
|
"y" #'meow-save
|
||||||
"Y" #'meow-sync-grab
|
"Y" #'meow-sync-grab
|
||||||
"z" #'meow-pop-selection
|
"z" #'meow-pop-selection
|
||||||
|
|
22
config.el
22
config.el
|
@ -12,10 +12,23 @@
|
||||||
;; accept. For example:
|
;; accept. For example:
|
||||||
(setq doom-font (font-spec :family "JetBrains Mono" :size 19))
|
(setq doom-font (font-spec :family "JetBrains Mono" :size 19))
|
||||||
(setq fancy-splash-image (concat doom-user-dir "splash.png"))
|
(setq fancy-splash-image (concat doom-user-dir "splash.png"))
|
||||||
(setq doom-theme 'doom-monokai-pro)
|
;; (setq doom-theme 'doom-monokai-pro)
|
||||||
|
(setq doom-theme 'doom-one)
|
||||||
|
;; (setq doom-theme 'doom-tomorrow-night-bright)
|
||||||
|
;; (doom-themes-treemacs-config)
|
||||||
|
|
||||||
|
|
||||||
(setq +doom-dashboard-pwd-policy nil)
|
(setq +doom-dashboard-pwd-policy nil)
|
||||||
|
|
||||||
|
;; Must be used *after* the theme is loaded
|
||||||
|
(custom-set-faces
|
||||||
|
'(default ((t (:background "#111111"))))
|
||||||
|
'(hl-line ((t (:background "#222222"))))
|
||||||
|
;; '(solair-default-face ((t (:background "#111111"))))
|
||||||
|
'(cursor ((t (:background "#FCFCFA" :foreground "black"))))
|
||||||
|
'(line-number ((t (:foreground "#424242"))))
|
||||||
|
'(mu4e-highlight-face ((t (:inherit nil :background "gray26" :foreground "gray85")))))
|
||||||
|
|
||||||
;; This determines the style of line numbers in effect. If set to `nil', line
|
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||||
(setq display-line-numbers-type 'relative)
|
(setq display-line-numbers-type 'relative)
|
||||||
|
@ -37,6 +50,11 @@
|
||||||
(setq org-directory "~/Documents/Obsidian/Primary")
|
(setq org-directory "~/Documents/Obsidian/Primary")
|
||||||
|
|
||||||
(use-package! kbd-mode :defer t)
|
(use-package! kbd-mode :defer t)
|
||||||
|
(use-package! kdl-mode)
|
||||||
|
|
||||||
|
(use-package! direnv
|
||||||
|
:config
|
||||||
|
(direnv-mode))
|
||||||
|
|
||||||
;; Modeline
|
;; Modeline
|
||||||
;; - add current workspace name
|
;; - add current workspace name
|
||||||
|
@ -53,7 +71,7 @@
|
||||||
(t (call-interactively #'yas-insert-snippet))))
|
(t (call-interactively #'yas-insert-snippet))))
|
||||||
|
|
||||||
;; set default frame size on launch
|
;; set default frame size on launch
|
||||||
(setq default-frame-alist '( (left . 0) (top . 0) (height . 48) (width . 160)))
|
;; (setq default-frame-alist '( (left . 0) (top . 0) (height . 48) (width . 160)))
|
||||||
|
|
||||||
;; some global settings
|
;; some global settings
|
||||||
;; (setq tab-always-indent t) ; don't autocomplete with tab
|
;; (setq tab-always-indent t) ; don't autocomplete with tab
|
||||||
|
|
|
@ -10,14 +10,14 @@
|
||||||
'(tool-bar-mode nil)
|
'(tool-bar-mode nil)
|
||||||
'(warning-suppress-log-types '((lsp-mode) (lsp-mode) (lsp-mode) (defvaralias)))
|
'(warning-suppress-log-types '((lsp-mode) (lsp-mode) (lsp-mode) (defvaralias)))
|
||||||
'(warning-suppress-types '((lsp-mode) (lsp-mode) (defvaralias))))
|
'(warning-suppress-types '((lsp-mode) (lsp-mode) (defvaralias))))
|
||||||
(custom-set-faces
|
(custom-set-faces)
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(cursor ((t (:background "#FCFCFA" :foreground "black"))))
|
;; '(cursor ((t (:background "#FCFCFA" :foreground "black"))))
|
||||||
'(line-number ((t (:foreground "#424242"))))
|
;; '(line-number ((t (:foreground "#424242"))))
|
||||||
'(mu4e-highlight-face ((t (:inherit nil :background "gray26" :foreground "gray85")))))
|
;; '(mu4e-highlight-face ((t (:inherit nil :background "gray26" :foreground "gray85")))))
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
:demand t
|
:demand t
|
||||||
:config
|
:config
|
||||||
(meow/setup-qwerty)
|
(meow/setup-qwerty)
|
||||||
|
(setq meow-use-clipboard t)
|
||||||
(map! :map meow-normal-state-keymap
|
(map! :map meow-normal-state-keymap
|
||||||
doom-leader-key doom-leader-map)
|
doom-leader-key doom-leader-map)
|
||||||
(map! :map meow-motion-state-keymap
|
(map! :map meow-motion-state-keymap
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
;; mu4e
|
;; mu4e
|
||||||
(add-load-path! "~/.nix-profile/share/emacs/site-lisp/mu4e")
|
(setf mu4e-mu-version "1.12.8")
|
||||||
(setf mu4e-mu-version "1.12.7")
|
|
||||||
|
|
||||||
(set-email-account! "admin@studyoftime.org"
|
(set-email-account! "admin@studyoftime.org"
|
||||||
'((mu4e-sent-folder . "/admin@studyoftime.org/Sent")
|
'((mu4e-sent-folder . "/admin@studyoftime.org/Sent")
|
||||||
|
@ -150,7 +149,7 @@
|
||||||
|
|
||||||
(setq mu4e-bookmarks nil)
|
(setq mu4e-bookmarks nil)
|
||||||
|
|
||||||
(setq sendmail-program "/home/emenel/.nix-profile/bin/msmtp"
|
(setq sendmail-program "/etc/profiles/per-user/emenel/bin/msmtp"
|
||||||
send-mail-function 'smtpmail-send-it
|
send-mail-function 'smtpmail-send-it
|
||||||
message-sendmail-f-is-evil t
|
message-sendmail-f-is-evil t
|
||||||
message-sendmail-extra-arguments '("--read-envelope-from")
|
message-sendmail-extra-arguments '("--read-envelope-from")
|
||||||
|
|
10
packages.el
10
packages.el
|
@ -26,10 +26,18 @@
|
||||||
|
|
||||||
;;(unpin! mu4e)
|
;;(unpin! mu4e)
|
||||||
|
|
||||||
(package! gpastel)
|
(package! direnv)
|
||||||
|
|
||||||
|
(package! gpastel)
|
||||||
|
(package! magit-annex)
|
||||||
(package! bookmark-in-project)
|
(package! bookmark-in-project)
|
||||||
|
|
||||||
|
(package! kdl-mode
|
||||||
|
:recipe (:type git
|
||||||
|
:host github
|
||||||
|
:repo "bobuk/kdl-mode"
|
||||||
|
:files (:defaults "*.el")))
|
||||||
|
|
||||||
(package! meow-vterm
|
(package! meow-vterm
|
||||||
:recipe (:type git
|
:recipe (:type git
|
||||||
:host github
|
:host github
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue