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

11 lines
161 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
local lspconfig = require("lspconfig")
2024-04-06 03:03:58 +03:00
lspconfig.hls.setup {
filetypes = { 'haskell', 'lhaskell', 'cabal' },
}
'';
2024-04-06 03:03:58 +03:00
}