From bb24fca211c5d5e8d3cf88151e60d0b2b0555127 Mon Sep 17 00:00:00 2001 From: William Boman Date: Thu, 30 Sep 2021 16:34:15 +0200 Subject: add Lua API to override default settings (#111) --- lua/nvim-lsp-installer.lua | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lua/nvim-lsp-installer.lua') diff --git a/lua/nvim-lsp-installer.lua b/lua/nvim-lsp-installer.lua index 58b909dd..b05ac31c 100644 --- a/lua/nvim-lsp-installer.lua +++ b/lua/nvim-lsp-installer.lua @@ -3,9 +3,12 @@ local dispatcher = require "nvim-lsp-installer.dispatcher" local process = require "nvim-lsp-installer.process" local status_win = require "nvim-lsp-installer.ui.status-win" local servers = require "nvim-lsp-installer.servers" +local settings = require "nvim-lsp-installer.settings" local M = {} +M.settings = settings.set + function M.display() status_win().open() end