comparison dot_config/nvim/config.lua @ 327:3b191bcd4e0d

Add efm config
author zegervdv <zegervdv@me.com>
date Mon, 04 Jan 2021 14:41:25 +0100
parents 9db87baf536e
children 855380bb5a3b
comparison
equal deleted inserted replaced
326:9db87baf536e 327:3b191bcd4e0d
250 if (vim.fn.executable('efm-langserver') == 1) then 250 if (vim.fn.executable('efm-langserver') == 1) then
251 require 'efm/python' 251 require 'efm/python'
252 252
253 -- May not be installed, use pcall to handle errors 253 -- May not be installed, use pcall to handle errors
254 pcall(require, 'efm/systemverilog') 254 pcall(require, 'efm/systemverilog')
255 pcall(require, 'efm/flp')
255 256
256 local language_cfg = require'efm/languages' 257 local language_cfg = require'efm/languages'
257 258
258 lsp.efm.setup{ 259 lsp.efm.setup{
259 on_attach = on_attach; 260 on_attach = on_attach;