nix/home/config/nvim/module/plugin/lsp/Haskell.nix

11 lines
161 B
Nix

{ ... }:
{
text = ''
local lspconfig = require("lspconfig")
lspconfig.hls.setup {
filetypes = { 'haskell', 'lhaskell', 'cabal' },
}
'';
}