Skip to content

Latest commit

 

History

History
140 lines (115 loc) · 6.08 KB

programming.org

File metadata and controls

140 lines (115 loc) · 6.08 KB

Programming

Dependencies

DependencyDescription
helpfulAdds helpful popups for emacs lisp.
flycheckAdds a better linter to Emacs.
lsp-modeLanguage servers for emacs.
dap-modeAdds debuggers to everything with common UI.
rusticImproved rust programming UX.
clojure-modeAdds basic clojure editing.
ciderBetter REPL integration with Clojure.
tree-editStructured editing for everything.
smartparensMake parens nicer.
magitA much nicer git UI.
forgeMakes accessing git forges easier.
scss-mode
(ec-load-deps deps)

Linters and Debuggers

LSP Mode

We make it so that lsp-mode’s documentation popup is always used… unless of course we happen to be using clojure, at which point it does nothing.

(bind-key (kbd "C-c C-d") 'lsp-describe-thing-at-point 'lsp-mode-map
	  (lambda () (eq major-mode 'clojure-mode)))

Debug Adaptor Protocol

As with any other programmer I feel the urge to debug things sometimes. So I have added a little code to include the excellent dap-mode in emacs.

(add-hook 'dap-stopped-hook
            (lambda (arg) (call-interactively #'dap-hydra)))

Flycheck


Structure Editing

The structure editing interface comrpises a collection fo key bindings that allow for (hopefully seamless) structure editing for a variety of languages, including org-mode files. The functions are as follows:

chordfunction
C-fGoes forwards a node.
C-bGoes backwards a node.
C-nSteps into a selected node, edits if it is a terminal.
DELSteps out of the currently selected node.
C-pKills the currently selected node
C-M-<right>Moves right
C-M-<left>Moves Left

Tree Sitter Supported Languages

Moving

Highlighting

Lisp Like Languages

For the things that tresitter does not do (probably because they are trivial), there is the trusty smartparens package and a colleciton of functions that produce the standard interface for structure editing.

Moving

When using lisp like

Highlighting

I also like to subtly highlight the section of code I am currently working on. This has the effect of making that section more obvious without adjusting the character width or conflicting with my syntax highlihgting.

(setq show-paren-style 'expression)
(show-smartparens-global-mode +1)

Org Mode

Moving

Highlighting

Languages

Now we actually define the interfaces for individual languages. But to start out we must sort of define a unified interface. You see, it is not sufficent to merely define a set of keys that are to be used, but rather

Emacs Lisp

Naturally, on of the languages I use is emacs lisp. Therefore I have an extensive featureset to work with it, adding macroexpansion and other utilities.

(setq counsel-describe-function-function #'helpful-callable)
(setq counsel-describe-variable-function #'helpful-variable)
;; Lookup the current symbol at point. C-c C-d is a common keybinding
;; for this in lisp modes.
(bind-key (kbd "C-c C-d") #'helpful-at-point 'emacs-lisp-mode-map)


;; Look up *F*unctions (excludes macros).
;;
;; By default, C-h F is bound to `Info-goto-emacs-command-node'. Helpful
;; already links to the manual, if a function is referenced there.
(global-set-key (kbd "C-h F") #'counsel-describe-function)

;; Look up *C*ommands.
;;
;; By default, C-h C is bound to describe `describe-coding-system'. I
;; don't find this very useful, but it's frequently useful to only
;; look at interactive functions.
(global-set-key (kbd "C-h C") #'helpful-command)


(defhydra emacs-help-menu (global-map "C-h")
  "Help Menus"
  ("f" counsel-describe-function "describe function")
  ("v" counsel-describe-variable "describe variable"))

Rust

For rust I have a little setup based upon rustic, which is a common, and fairly advanced, Rust development toolkit.

(require 'rustic-ob)

Clojure

Here I add some clojure tools, focused on things like macroexpansion and other utilities. It also continues with my unified interface.

(bind-key (kbd "C-c C-d") #'cider-browse-ns-doc-at-point 'clojure-mode-map)
(setq cider-connection-message-fn #'cider-random-tip)
(setq nrepl-hide-special-buffers t)
(setq cider-font-lock-dynamically '(macro core function var))
(setq cider-eldoc-display-context-dependent-info t) ;; make it display more info

Prolog

I actually use prolog sometimes for experimenting, and use a variety of different systems implementations, largely for fun.


Version Control

Magit

The classic, magical user interface. Magit provides a simple UI system for writing comments in

Forge