Compare commits
3 commits
05312716ea
...
b2c45c5169
Author | SHA1 | Date | |
---|---|---|---|
b2c45c5169 | |||
ed1787c8bc | |||
d007106840 |
4 changed files with 43 additions and 57 deletions
35
flake.lock
generated
35
flake.lock
generated
|
@ -7,11 +7,11 @@
|
|||
"nixpkgs-stable": "nixpkgs-stable"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1724231640,
|
||||
"narHash": "sha256-1FnV0jk8GAItH71zVTzrhULylMKyXsb4FNmtn9b46Ug=",
|
||||
"lastModified": 1724577031,
|
||||
"narHash": "sha256-C3ufe7meLX9zNEOawPKdIpfmFQ+D5d2oqQ3iQMFdva4=",
|
||||
"owner": "nix-community",
|
||||
"repo": "emacs-overlay",
|
||||
"rev": "758aa1deb09d8d2dce7bd3a016434e8fcedfab89",
|
||||
"rev": "d945c2ba0421e0c1b239b5882f2c0725fe8cfba1",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -36,6 +36,22 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"extra-package-haskell-ts-mode": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1724579033,
|
||||
"narHash": "sha256-cwkJY5kLgcTuTMy2/5t/CkEnN1x7aj6BaSX1wYg7Vw8=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "d9afd84e46b41c9912539face04ec7bb2a16ba78",
|
||||
"revCount": 47,
|
||||
"type": "git",
|
||||
"url": "https://codeberg.org/pranshu/haskell-ts-mode.git"
|
||||
},
|
||||
"original": {
|
||||
"type": "git",
|
||||
"url": "https://codeberg.org/pranshu/haskell-ts-mode.git"
|
||||
}
|
||||
},
|
||||
"extra-package-indent-bars": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
@ -145,11 +161,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1723991338,
|
||||
"narHash": "sha256-Grh5PF0+gootJfOJFenTTxDTYPidA3V28dqJ/WV7iis=",
|
||||
"lastModified": 1724224976,
|
||||
"narHash": "sha256-Z/ELQhrSd7bMzTO8r7NZgi9g5emh+aRKoCdaAv5fiO0=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "8a3354191c0d7144db9756a74755672387b702ba",
|
||||
"rev": "c374d94f1536013ca8e92341b540eba4c22f9c62",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -173,11 +189,11 @@
|
|||
},
|
||||
"nixpkgs-stable": {
|
||||
"locked": {
|
||||
"lastModified": 1724098845,
|
||||
"narHash": "sha256-D5HwjQw/02fuXbR4LCTo64koglP2j99hkDR79/3yLOE=",
|
||||
"lastModified": 1724316499,
|
||||
"narHash": "sha256-Qb9MhKBUTCfWg/wqqaxt89Xfi6qTD3XpTzQ9eXi3JmE=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "f1bad50880bae73ff2d82fafc22010b4fc097a9c",
|
||||
"rev": "797f7dc49e0bc7fab4b57c021cdf68f595e47841",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -207,6 +223,7 @@
|
|||
"inputs": {
|
||||
"emacs-overlay": "emacs-overlay",
|
||||
"extra-package-copilot": "extra-package-copilot",
|
||||
"extra-package-haskell-ts-mode": "extra-package-haskell-ts-mode",
|
||||
"extra-package-indent-bars": "extra-package-indent-bars",
|
||||
"extra-package-notmuch-notify": "extra-package-notmuch-notify",
|
||||
"flake-parts": "flake-parts",
|
||||
|
|
|
@ -18,6 +18,10 @@
|
|||
url = "github:zerolfx/copilot.el";
|
||||
flake = false;
|
||||
};
|
||||
extra-package-haskell-ts-mode = {
|
||||
url = "git+https://codeberg.org/pranshu/haskell-ts-mode.git";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs @ {flake-parts, ...}:
|
||||
|
|
55
init.el
55
init.el
|
@ -581,49 +581,9 @@
|
|||
(eshell 'N)
|
||||
(add-hook 'kill-buffer-hook 'delete-frame nil 't)) ;; destroy frame on exit
|
||||
|
||||
(defun ccr/eshell-history ()
|
||||
"Interactive search eshell history."
|
||||
(interactive)
|
||||
(require 'em-hist)
|
||||
(save-excursion
|
||||
(eshell-bol)
|
||||
(let* ((start-pos (point))
|
||||
(end-pos (line-end-position))
|
||||
(input (buffer-substring-no-properties start-pos end-pos)))
|
||||
(message input)
|
||||
(let* (
|
||||
(history-shell (split-string (shell-command-to-string "history") "\n"))
|
||||
(history-eshell (delete-dups (when (> (ring-size eshell-history-ring) 0)
|
||||
(ring-elements eshell-history-ring))))
|
||||
(history (append history-shell history-eshell))
|
||||
;; (history-highlighted (mapcar #'(lambda (cmd)
|
||||
;; (with-temp-buffer
|
||||
;; (text-mode)
|
||||
;; (insert cmd)
|
||||
;; (forward-line 0)
|
||||
;; ;; FIXME it breaks trying to highlight commands like `cd /ssh:host:~'
|
||||
;; ;; (eshell-syntax-highlighting--parse-and-highlight 'command (point-max))
|
||||
;; (add-face-text-property (point-min) (point-max) '(:background nil))
|
||||
;; (buffer-string)))
|
||||
;; history))
|
||||
(command (completing-read
|
||||
"Command: "
|
||||
history
|
||||
nil
|
||||
nil
|
||||
input
|
||||
)))
|
||||
(kill-region start-pos end-pos)
|
||||
(insert command)
|
||||
)))
|
||||
(end-of-line))
|
||||
|
||||
(defun ccr/wrap-eshell-write-history (orig-fun &optional filename &rest _)
|
||||
(apply orig-fun `(,filename 't)))
|
||||
|
||||
;; Wrapping this in order to merge histories from different shells
|
||||
(advice-add 'eshell-write-history
|
||||
:around #'ccr/wrap-eshell-write-history)
|
||||
;; (advice-add 'eshell-write-history
|
||||
;; :around #'ccr/wrap-eshell-write-history)
|
||||
|
||||
(add-to-list 'eshell-modules-list 'eshell-tramp) ;; to use sudo in eshell
|
||||
;; (add-to-list 'eshell-modules-list 'eshell-smart) ;; plan 9 style
|
||||
|
@ -644,11 +604,14 @@
|
|||
:hook (eshell-mode . (lambda () (setq-local scroll-margin 0)))
|
||||
:bind (("C-c o e" . project-eshell)
|
||||
:map eshell-mode-map
|
||||
("C-r" . ccr/eshell-history))) ;; i.e. just C-r in semi-char-mode
|
||||
("C-r" . eshell-atuin-history))) ;; i.e. just C-r in semi-char-mode
|
||||
|
||||
(use-package esh-autosuggest
|
||||
;; :hook (eshell-mode . esh-autosuggest-mode) # FIXME otherwise emacs stucks
|
||||
)
|
||||
(use-package eshell-command-not-found
|
||||
:custom ((eshell-command-not-found-command "command-not-found"))
|
||||
:hook ((eshell-mode . eshell-command-not-found-mode)))
|
||||
|
||||
(use-package eshell-atuin
|
||||
:hook ((eshell-mode . eshell-atuin-mode)))
|
||||
|
||||
(use-package fish-completion-mode
|
||||
:hook ((eshell-mode . fish-completion-mode)))
|
||||
|
|
|
@ -53,10 +53,12 @@ pkgs: epkgs: let
|
|||
eshell-syntax-highlighting
|
||||
fish-completion # fish completion for eshell
|
||||
eshell-prompt-extras
|
||||
esh-autosuggest
|
||||
eshell-atuin
|
||||
eshell-command-not-found
|
||||
clipetty
|
||||
sideline
|
||||
sideline-flymake
|
||||
consult-eglot
|
||||
# sideline-flymake
|
||||
rainbow-delimiters
|
||||
vertico
|
||||
marginalia
|
||||
|
|
Reference in a new issue