Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 669 Bytes

File metadata and controls

28 lines (21 loc) · 669 Bytes

Sudo Configuration

Preserve editor variables and grant full sudo access to members of the sudo group.

Defaults:%sudo env_keep += "EDITOR SYSTEMD_EDITOR"
%sudo   ALL=(ALL:ALL) ALL

Haskell

Custom settings for Haskell Language Server to ensure that I get the same flags turned when I build HLS on a new machine:

package haskell-language-server
  flags: -brittany
         -floskell
         -ormolu
         -stylishHaskell
         +fourmolu

Generate documentation and debugging symbols for when developing a project:

package *
  ghc-options: -haddock -g -O0