|
@@ -84,10 +84,13 @@
|
|
(set (make-local-variable 'buffer-face-mode-face) 'fixed-pitch)
|
|
(set (make-local-variable 'buffer-face-mode-face) 'fixed-pitch)
|
|
(buffer-face-mode t)))
|
|
(buffer-face-mode t)))
|
|
|
|
|
|
-(global-set-key (kbd "C-<escape>") 'vterm-send-escape)
|
|
|
|
-(global-set-key (kbd "C-c C-s") 'vterm-send-C-r)
|
|
|
|
-(global-set-key (kbd "C-c C-u") 'vterm-send-C-u)
|
|
|
|
-(global-set-key (kbd "C-c C-d") 'vterm-send-C-d)
|
|
|
|
|
|
+(global-set-key (kbd "C-c <escape>") 'vterm-send-escape) ;
|
|
|
|
+(global-set-key (kbd "C-c C-u") 'vterm-send-C-u) ; Readline line
|
|
|
|
+(global-set-key (kbd "C-c C-w") 'vterm-send-C-w) ; Readline word
|
|
|
|
+(global-set-key (kbd "C-c C-d") 'vterm-send-C-d) ; Exit
|
|
|
|
+(global-set-key (kbd "C-c C-r") 'vterm-send-C-r) ; Reverse search
|
|
|
|
+(global-set-key (kbd "C-b") 'vterm-send-C-b) ; Tmux
|
|
|
|
+(global-set-key (kbd "C-c C-a") 'vterm-send-C-a) ; Exit screen
|
|
|
|
|
|
;;; Syntax highlights for uxn-tal
|
|
;;; Syntax highlights for uxn-tal
|
|
(straight-use-package
|
|
(straight-use-package
|
|
@@ -307,7 +310,7 @@
|
|
(emacs-lisp-mode))))
|
|
(emacs-lisp-mode))))
|
|
(global-set-key (kbd "C-c l") 'display-line-numbers-mode)
|
|
(global-set-key (kbd "C-c l") 'display-line-numbers-mode)
|
|
(global-set-key (kbd "C-c w") 'window-swap-states)
|
|
(global-set-key (kbd "C-c w") 'window-swap-states)
|
|
-(global-set-key (kbd "C-c C-w") 'windresize)
|
|
|
|
|
|
+(global-set-key (kbd "C-c C-W") 'windresize)
|
|
(global-set-key (kbd "C-c W") 'whitespace-mode)
|
|
(global-set-key (kbd "C-c W") 'whitespace-mode)
|
|
(global-set-key (kbd "C-c t") 'sol-dk)
|
|
(global-set-key (kbd "C-c t") 'sol-dk)
|
|
(global-set-key (kbd "C-c y") 'sol-l)
|
|
(global-set-key (kbd "C-c y") 'sol-l)
|
|
@@ -435,3 +438,22 @@
|
|
(shell-command-on-region (point) (mark) "xclip -selection clipboard")))
|
|
(shell-command-on-region (point) (mark) "xclip -selection clipboard")))
|
|
(load (expand-file-name "~/quicklisp/slime-helper.el"))
|
|
(load (expand-file-name "~/quicklisp/slime-helper.el"))
|
|
(setq inferior-lisp-program (locate-file "sbcl" exec-path exec-suffixes 1))))
|
|
(setq inferior-lisp-program (locate-file "sbcl" exec-path exec-suffixes 1))))
|
|
|
|
+(custom-set-variables
|
|
|
|
+ ;; custom-set-variables was added by Custom.
|
|
|
|
+ ;; If you edit it by hand, you could mess it up, so be careful.
|
|
|
|
+ ;; Your init file should contain only one such instance.
|
|
|
|
+ ;; If there is more than one, they won't work right.
|
|
|
|
+ '(custom-safe-themes
|
|
|
|
+ '("ab058aa22bdaf17b5d8a9e21632a62c8966728ae10ef8fd07e95637e9cdf7a7b" "f0eb51d80f73b247eb03ab216f94e9f86177863fb7e48b44aacaddbfe3357cf1" "4c56af497ddf0e30f65a7232a8ee21b3d62a8c332c6b268c81e9ea99b11da0d3" "fee7287586b17efbfda432f05539b58e86e059e78006ce9237b8732fde991b4c" "2809bcb77ad21312897b541134981282dc455ccd7c14d74cc333b6e549b824f3" "c433c87bd4b64b8ba9890e8ed64597ea0f8eb0396f4c9a9e01bd20a04d15d358" "0fffa9669425ff140ff2ae8568c7719705ef33b7a927a0ba7c5e2ffcfac09b75" "01106ca9b4446341ecb86a76b9db48f1100e2eb13980aa0ec6f6adf8e69fd9a7" default))
|
|
|
|
+ '(display-time-mode t)
|
|
|
|
+ '(frame-background-mode 'dark))
|
|
|
|
+(custom-set-faces
|
|
|
|
+ ;; custom-set-faces was added by Custom.
|
|
|
|
+ ;; If you edit it by hand, you could mess it up, so be careful.
|
|
|
|
+ ;; Your init file should contain only one such instance.
|
|
|
|
+ ;; If there is more than one, they won't work right.
|
|
|
|
+ '(default ((t (:family "Envy Code R" :foundry "UNKN" :slant normal :weight normal :height 100 :width normal))))
|
|
|
|
+ '(org-level-1 ((t (:inherit variable-pitch :foreground "#cb4b16" :height 1.0))))
|
|
|
|
+ '(org-level-2 ((t (:inherit variable-pitch :foreground "#859900" :height 1.0))))
|
|
|
|
+ '(org-level-3 ((t (:inherit variable-pitch :foreground "#268bd2" :height 1.0))))
|
|
|
|
+ '(org-level-4 ((t (:inherit variable-pitch :foreground "#b58900" :height 1.0)))))
|