summaryrefslogtreecommitdiff
path: root/.vim/ftplugin/haskell.vim
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2014-10-31 13:24:57 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2014-10-31 13:24:58 +0100
commit053de2b98f1c8bac6482125335ea6fc17dbc99c5 (patch)
tree62ec6f3ac5b0b66a93fc0a5926416db935c6eacf /.vim/ftplugin/haskell.vim
parent4544a18619bc78bdd9a18425126ead9fcfe03e29 (diff)
downloaddotfiles-053de2b98f1c8bac6482125335ea6fc17dbc99c5.tar.gz
dotfiles-053de2b98f1c8bac6482125335ea6fc17dbc99c5.tar.bz2
dotfiles-053de2b98f1c8bac6482125335ea6fc17dbc99c5.zip
[vim] Haskell
Diffstat (limited to '')
-rw-r--r--.vim/ftplugin/haskell.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/.vim/ftplugin/haskell.vim b/.vim/ftplugin/haskell.vim
new file mode 100644
index 0000000..a1ad287
--- /dev/null
+++ b/.vim/ftplugin/haskell.vim
@@ -0,0 +1,15 @@
+" Tab specific option
+set tabstop=8 "A tab is 8 spaces
+set expandtab "Always uses spaces instead of tabs
+set softtabstop=4 "Insert 4 spaces when tab is pressed
+set shiftwidth=4 "An indent is 4 spaces
+set shiftround "Round indent to nearest shiftwidth multiple
+
+let g:haskellmode_completion_ghc=0
+let g:necoghc_enable_detailed_browse=1
+set omnifunc=necoghc#omnifunc
+
+let g:haddock_browser="/usr/bin/firefox"
+let g:haddock_browser_callformat="%s '%s'"
+
+compiler ghc