tweak(doom): enable lua
This commit is contained in:
parent
e2dbd824c3
commit
a9975486b0
4 changed files with 8 additions and 1 deletions
|
@ -148,6 +148,7 @@
|
|||
nim
|
||||
rust
|
||||
zig
|
||||
lua
|
||||
])
|
||||
];
|
||||
};
|
||||
|
|
5
profiles/develop/programming/lua.nix
Normal file
5
profiles/develop/programming/lua.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
environment.systemPackages = with pkgs; lib.lists.flatten [
|
||||
lua-language-server
|
||||
];
|
||||
}
|
|
@ -102,6 +102,7 @@
|
|||
|
||||
;; --- LSP ---
|
||||
(setq lsp-csharp-server-path (executable-find "omnisharp"))
|
||||
(setq lsp-clients-lua-language-server-bin (executable-find "lua-language-server"))
|
||||
(setq lsp-haskell-formatting-provider "ormolu")
|
||||
|
||||
(after! lsp-mode
|
||||
|
|
|
@ -143,7 +143,7 @@
|
|||
latex ; writing papers in Emacs has never been so fun
|
||||
;;lean ; for folks with too much to prove
|
||||
;;ledger ; be audit you can be
|
||||
;;lua ; one-based indices? one-based indices
|
||||
(lua +lsp +tree-sitter) ; one-based indices? one-based indices
|
||||
(markdown +grip) ; writing docs for people to ignore
|
||||
nim ; python + lisp at the speed of c
|
||||
nix ; I hereby declare "nix geht mehr!"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue