💧 elixir-ls

This commit is contained in:
James Walker 2021-06-23 22:21:33 -04:00
parent 670dd182da
commit c91d1e120b
Signed by: walkah
GPG Key ID: 3C127179D6086E93
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@
;;csharp ; unity, .NET, and mono shenanigans ;;csharp ; unity, .NET, and mono shenanigans
;;data ; config/data formats ;;data ; config/data formats
;;(dart +flutter) ; paint ui and not much else ;;(dart +flutter) ; paint ui and not much else
elixir ; erlang done right (elixir +lsp) ; erlang done right
(elm +lsp) ; care for a cup of TEA? (elm +lsp) ; care for a cup of TEA?
emacs-lisp ; drown in parentheses emacs-lisp ; drown in parentheses
;;erlang ; an elegant language for a more civilized age ;;erlang ; an elegant language for a more civilized age

View File

@ -1,7 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
home.packages = with pkgs; [ elixir ]; home.packages = with pkgs; [ elixir elixir_ls ];
programs.zsh.oh-my-zsh.plugins = [ "mix" ]; programs.zsh.oh-my-zsh.plugins = [ "mix" ];
} }