diff --git a/code/init.el b/code/init.el index 8ae2dc2..d55f493 100644 --- a/code/init.el +++ b/code/init.el @@ -81,12 +81,6 @@ ) ) -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; misc config -(set-default 'truncate-lines t) -; highlight current line -(global-hl-line-mode +1) - ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; activate helm after its fully configured (may be configured beyond global defaults in other profiles so we have to activate locally) (helm-mode 1) diff --git a/common/_global.el b/common/_global.el index 658861e..67c847b 100644 --- a/common/_global.el +++ b/common/_global.el @@ -47,6 +47,16 @@ (unless (was-compiled-p "~/.emacs.d.profiles/common") (byte-recompile-directory "~/.emacs.d.profiles/common" 0)) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; eshell +(setq eshell-prompt-function (lambda () (concat (car (last (split-string (eshell/pwd) "/"))) " $ "))) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; misc config +(set-default 'truncate-lines t) +; highlight current line +(global-hl-line-mode +1) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; fix opening urls inside termux (when kmn/is-termux @@ -576,3 +586,4 @@ Other buffer group by `centaur-tabs-get-group-name' with project name." ; scratch.el (multi-scratch / melpa) (global-set-key (kbd "C-c r s") #'scratch) ; C-u C-c s s for mode prompt +