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:
parent
1dbb82fc49
commit
48dff4004d
1 changed files with 2 additions and 6 deletions
|
@ -124,14 +124,10 @@ local init = function ()
|
||||||
}
|
}
|
||||||
-- Language support & syntax highlighting
|
-- Language support & syntax highlighting
|
||||||
-- Haskell
|
-- Haskell
|
||||||
use {
|
use 'neovimhaskell/haskell-vim'
|
||||||
'neovimhaskell/haskell-vim',
|
|
||||||
ft = 'haskell'
|
|
||||||
}
|
|
||||||
use {
|
use {
|
||||||
'ndmitchell/ghcid',
|
'ndmitchell/ghcid',
|
||||||
rtp = 'plugins/nvim',
|
rtp = 'plugins/nvim'
|
||||||
ft = 'haskell'
|
|
||||||
}
|
}
|
||||||
-- For C, Lua and Rust
|
-- For C, Lua and Rust
|
||||||
use {
|
use {
|
||||||
|
|
Loading…
Reference in a new issue