I installed haskell-mode in order to have highlighted code when editing *.hs files.
I have added the following line to my init.el file:
(load "/usr/share/emacs/site-lisp/haskell-mode/haskell-package.el")
As it can be understand from the manual https://github.com/haskell/haskell-mode/wiki/Syntax-highlighting, the code should be highlited automatically by adding this line, right?
I have also added the line
(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
into my init.el file just to see if anithing changes but still I get nothing for haskell code.