From 43bb2bcc49da4374049125994dc9279631adfb93 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Thu, 10 Oct 2024 14:39:16 -0700 Subject: [PATCH] feat: add rustaceanvim and haskell-tools --- flake.nix | 3 +++ lua/plugins/lz-spec.lua | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/flake.nix b/flake.nix index e93f3ba..6a19d0f 100644 --- a/flake.nix +++ b/flake.nix @@ -168,6 +168,9 @@ undotree conform-nvim neocord + rustaceanvim + crates-nvim + haskell-tools-nvim ]; }; diff --git a/lua/plugins/lz-spec.lua b/lua/plugins/lz-spec.lua index fdf8e3e..d2af0b0 100644 --- a/lua/plugins/lz-spec.lua +++ b/lua/plugins/lz-spec.lua @@ -229,4 +229,13 @@ return { }) end, }, + { + "crates.nvim", + filetypes = "*.toml", + after = function() + require("crates").setup() + end, + }, + { "rustaceanvim" }, + { "haskell-tools.nvim" }, }