we an go cheo jim

This commit is contained in:
2025-11-29 13:08:29 +09:00
parent 9399fde789
commit 185887d20d
3 changed files with 10 additions and 11 deletions

9
after/lsp/hls.lua Normal file
View File

@@ -0,0 +1,9 @@
return {
filetypes = { "haskell", "lhaskell" },
cmd = { "haskell-language-server-wrapper", "--lsp" },
settings = {
haskell = {
formattingProvider = "fourmolu"
}
}
}

View File

@@ -14,7 +14,6 @@
"glance.nvim": { "branch": "master", "commit": "bf86d8b79dce808e65fdb6e9269d0b4ed6d2eefc" },
"hardtime.nvim": { "branch": "main", "commit": "b4e431934af1fe224a3a801f632c008278cb7628" },
"haskell-mod.nvim": { "branch": "main", "commit": "f403618030ef9687e63eecfca7798e53b969f763" },
"hererocks": { "branch": "master", "commit": "1cefef350109770ffa39e064e0eae5c28a1f5455" },
"image.nvim": { "branch": "master", "commit": "446a8a5cc7a3eae3185ee0c697732c32a5547a0b" },
"lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" },
"lazydev.nvim": { "branch": "main", "commit": "5231c62aa83c2f8dc8e7ba957aa77098cda1257d" },

View File

@@ -26,15 +26,6 @@ return {
cmd = { vim.fn.stdpath("config") .. "/shell/clangd-direnv.sh" }
})
vim.lsp.config("hls", {
capabilities = capabilities,
filetypes = { 'haskell', 'lhaskell' },
cmd = { "haskell-language-server-wrapper", "--lsp" },
settings = {
haskell = {
formattingProvider = "fourmolu"
}
}
})
vim.lsp.enable("hls")
end,
}