From 703c4a647385b9b654dd46f0a00019da651af552 Mon Sep 17 00:00:00 2001 From: Dario48 Date: Tue, 23 Dec 2025 22:26:42 +0100 Subject: [PATCH] haskell config --- after/ftplugin/haskell.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 after/ftplugin/haskell.lua diff --git a/after/ftplugin/haskell.lua b/after/ftplugin/haskell.lua new file mode 100644 index 0000000..5fffa3d --- /dev/null +++ b/after/ftplugin/haskell.lua @@ -0,0 +1,8 @@ +local conf = vim.lsp.config.hls +vim.lsp.config("hls", conf) +vim.lsp.enable("hls") + +vim.o.tabstop = 2 +vim.o.softtabstop = 0 +vim.o.shiftwidth = 0 +vim.o.expandtab = true