aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/nvim/my/after/ftplugin/haskell.vim
blob: 676dcce0e06f253e51de94ccc40fe50312898f1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
scriptencoding utf-8


if exists('b:did_ftplugin_haskell_after')
    finish
endif



FtpluginSetLocal expandtab
FtpluginSetLocal shiftwidth=4
FtpluginSetLocal softtabstop=4

let g:hs_highlight_boolean = v:true
let g:hs_highlight_types = v:true
let g:hs_highlight_more_types = v:true
let g:hs_highlight_debug = v:true
let g:hs_allow_hash_operator = v:true



let b:did_ftplugin_haskell_after = 1