lsp and completion tweaks

This commit is contained in:
Noah Masur
2022-07-11 02:47:54 +00:00
parent df6ac12204
commit e1ac175333
5 changed files with 58 additions and 13 deletions

View File

@ -1,8 +1,8 @@
{ config, pkgs, ... }: {
home-manager.users.${config.user}.home.packages = with pkgs;
[
stylua # Lua formatter
];
home-manager.users.${config.user}.home.packages = with pkgs; [
stylua # Lua formatter
sumneko-lua-language-server # Lua LSP
];
}