From 48dff4004d8c4cbc32874496987428430baedaf4 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 26 Jan 2021 18:41:07 +0530 Subject: [PATCH] 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. --- nvim/.config/nvim/lua/plugins.lua | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index d2e1882..ac9a3b8 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -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 {