| @@ -572,6 +572,12 @@ found, otherwise returns nil." | |||||
| (defvar helm-map) | (defvar helm-map) | ||||
| (define-key helm-map (kbd "C-h") (kbd "DEL"))) | (define-key helm-map (kbd "C-h") (kbd "DEL"))) | ||||
| (setq-default header-line-format | |||||
| '(:eval (let ((f (or (buffer-file-name) | |||||
| default-directory))) | |||||
| (when f | |||||
| (abbreviate-file-name f))))) | |||||
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||||
| ;; letters, font-lock mode and fonts | ;; letters, font-lock mode and fonts | ||||
| @@ -1910,6 +1916,11 @@ and search from projectile root (if projectile is available)." | |||||
| (defalias 'make 'compile) | (defalias 'make 'compile) | ||||
| (define-key ctl-x-map "c" 'compile) | (define-key ctl-x-map "c" 'compile) | ||||
| (define-key ctl-x-map (kbd "C-r") 'recently-show) | |||||
| (define-key ctl-x-map "T" 'git-worktree) | |||||
| (define-key ctl-x-map "W" 'git-walktree) | |||||
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||||
| ;; editorconfig-auto-apply | ;; editorconfig-auto-apply | ||||
| @@ -1949,10 +1960,6 @@ and search from projectile root (if projectile is available)." | |||||
| (define-key ctl-x-map (kbd "C-r") 'recently-show) | |||||
| (define-key ctl-x-map "T" 'git-worktree) | |||||
| (define-key ctl-x-map "W" 'git-walktree) | |||||
| ;;;;;;;;;;;;;;;; | ;;;;;;;;;;;;;;;; | ||||
| ;; flychcek-black | ;; flychcek-black | ||||
| @@ -2058,6 +2065,15 @@ and search from projectile root (if projectile is available)." | |||||
| (set-variable 'flycheck-python-mypy-ini | (set-variable 'flycheck-python-mypy-ini | ||||
| ".mypy.ini") | ".mypy.ini") | ||||
| ;;;;;;;;;;;;;;;;;;; | |||||
| ;; peek-file-mode | |||||
| (defun peek-file (file) | |||||
| "Peek FILE." | |||||
| (interactive) | |||||
| (message "%s" file)) | |||||
| ;; Local Variables: | ;; Local Variables: | ||||
| ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc) | ;; flycheck-disabled-checkers: (emacs-lisp-checkdoc) | ||||
| ;; flycheck-checker: emacs-lisp | ;; flycheck-checker: emacs-lisp | ||||