aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 3d3bea12..a8b840db 100644
--- a/README.md
+++ b/README.md
@@ -119,7 +119,7 @@ Example:
local lsp_installer = require("nvim-lsp-installer")
-- Provide settings first!
-lsp_installer.settings {
+lsp_installer.settings({
ui = {
icons = {
server_installed = "✓",
@@ -127,7 +127,7 @@ lsp_installer.settings {
server_uninstalled = "✗"
}
}
-}
+})
lsp_installer.on_server_ready(function (server) server:setup {} end)
```