feat: add :lang nu
This commit is contained in:
parent
e29d2c7ffa
commit
eebab83b74
3 changed files with 14 additions and 0 deletions
1
init.el
1
init.el
|
@ -151,6 +151,7 @@
|
|||
markdown ; writing docs for people to ignore
|
||||
;;nim ; python + lisp at the speed of c
|
||||
nix ; I hereby declare "nix geht mehr!"
|
||||
nu
|
||||
;;ocaml ; an objective camel
|
||||
org ; organize your plain life in plain text
|
||||
;;php ; perl's insecure younger brother
|
||||
|
|
6
modules/lang/nu/config.el
Normal file
6
modules/lang/nu/config.el
Normal file
|
@ -0,0 +1,6 @@
|
|||
;;; lang/nu/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
(use-package! nushell-ts-mode
|
||||
:init
|
||||
(add-hook 'nushell-ts-mode-hook #'lsp! 'append))
|
||||
(use-package! nushell-ts-babel)
|
7
modules/lang/nu/packages.el
Normal file
7
modules/lang/nu/packages.el
Normal file
|
@ -0,0 +1,7 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/nu/packages.el
|
||||
|
||||
(package! nushell-ts-mode
|
||||
:recipe (:host github :repo "herbertjones/nushell-ts-mode"))
|
||||
(package! nushell-ts-babel
|
||||
:recipe (:host github :repo "herbertjones/nushell-ts-babel"))
|
Loading…
Reference in a new issue