nvim: lua: plugins: Do not use file type loading for Haskell plugins

The syntax plugin does not seem to take an effect, when the file type
loading feature from packer is used. So, remove it.
This commit is contained in:
Sanchayan Maity 2021-01-26 18:41:07 +05:30
parent 1dbb82fc49
commit 48dff4004d
1 changed files with 2 additions and 6 deletions

View File

@ -124,14 +124,10 @@ local init = function ()
}
-- Language support & syntax highlighting
-- Haskell
use {
'neovimhaskell/haskell-vim',
ft = 'haskell'
}
use 'neovimhaskell/haskell-vim'
use {
'ndmitchell/ghcid',
rtp = 'plugins/nvim',
ft = 'haskell'
rtp = 'plugins/nvim'
}
-- For C, Lua and Rust
use {