aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/nvim/after/ftplugin/haskell.lua
blob: aa87e7be6d72494a264cb8a1d0f8ff647ff90db9 (plain)
1
2
3
4
5
6
7
8
vimrc.after_ftplugin('haskell', function(conf)
   conf.indent(conf.SPACE, 4)
   vim.g.hs_highlight_boolean = true
   vim.g.hs_highlight_types = true
   vim.g.hs_highlight_more_types = true
   vim.g.hs_highlight_debug = true
   vim.g.hs_allow_hash_operator = true
end)