Browse Source

Add haskell support

coc
Schneider 7 years ago
parent
commit
4b31b033b8
  1. 6
      vim/ftplugin/haskell.vim
  2. 3
      vimrc.symlink

6
vim/ftplugin/haskell.vim

@ -0,0 +1,6 @@
" 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

3
vimrc.symlink

@ -68,6 +68,9 @@ Plug 'altercation/vim-colors-solarized'
" TOML
Plug 'cespare/vim-toml', { 'for': 'toml' }
" Haskell
Plug 'bitc/vim-hdevtools', { 'for': 'haskell' }
set wildignore+=node_modules
" All of your Plugins must be added before the following line

Loading…
Cancel
Save