diff --git a/config/.doom.d/init.el b/config/.doom.d/init.el index fc49f96..d764944 100644 --- a/config/.doom.d/init.el +++ b/config/.doom.d/init.el @@ -157,7 +157,7 @@ ;;raku ; the artist formerly known as perl6 rest ; Emacs as a REST client ;;rst ; ReST in peace - (ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"} + (ruby +rails +lsp) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"} (rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap() ;;scala ; java, but good ;;scheme ; a fully conniving family of lisps diff --git a/modules/ruby.nix b/modules/ruby.nix index 24c483d..d201a14 100644 --- a/modules/ruby.nix +++ b/modules/ruby.nix @@ -2,4 +2,6 @@ { home.packages = with pkgs; [ ruby_2_7 solargraph ]; + + programs.zsh.oh-my-zsh.plugins = [ "bundler" "rails" ]; }