mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-27 19:19:53 +00:00
Show elixir version in the modeline
This commit is contained in:
parent
4f95702d7f
commit
86658d9f72
1 changed files with 4 additions and 0 deletions
|
@ -1122,6 +1122,10 @@ See `mode-line-percent-position'.")
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(when (and (executable-find "go") (executable-find "cut") (executable-find "tr") (executable-find "sed"))
|
(when (and (executable-find "go") (executable-find "cut") (executable-find "tr") (executable-find "sed"))
|
||||||
(setq doom-modeline-env-command "go version 2>&1 | cut -d' ' -f3 | tr -d 'go' | sed -n '1p'"))))
|
(setq doom-modeline-env-command "go version 2>&1 | cut -d' ' -f3 | tr -d 'go' | sed -n '1p'"))))
|
||||||
|
(add-hook 'elixir-mode-hook
|
||||||
|
(lambda ()
|
||||||
|
(when (and (executable-find "iex") (executable-find "cut") (executable-find "sed"))
|
||||||
|
(setq doom-modeline-env-command "iex --version 2>&1 | cut -d' ' -f2 | sed -n '1p'"))))
|
||||||
|
|
||||||
|
|
||||||
;; Ensure modeline is inactive when Emacs is unfocused (and active otherwise)
|
;; Ensure modeline is inactive when Emacs is unfocused (and active otherwise)
|
||||||
|
|
Loading…
Reference in a new issue