Add a simple location view
ci/woodpecker/push/build Pipeline was successful Details

This commit is contained in:
Sameer Rahmani 2023-06-30 14:54:57 +01:00
parent b0b448718e
commit d14e4b8f49
Signed by: lxsameer
GPG Key ID: B0A4AF28AB9FD90B
1 changed files with 20 additions and 1 deletions

View File

@ -44,13 +44,32 @@
:units
(list
(line-unit :label "")
;; (line-unit :label "")
(buffer-name-unit :label "B: ")
(mode-name-unit :label "M: ")
(projectile-project-unit :label "P: ")
(git-branch-unit :label "Br: ")))
(noether-defview noether-minimal-location
"A super simple bar containing the line number and column number that
Appears on the center of the current window."
:managed? t
:buffer "*location*"
:binding (kbd "C-c 2")
:separator "|"
:frame
(list
:position nil
:poshandler #'posframe-poshandler-window-center
:border-width 1
:timeout 5
:border-color "#bd93f9")
:units
(list
(line-unit :label "")))
(provide 'noether-views)
;;; noether-views.el ends here