diff options
author | dklymenk <[email protected]> | 2021-08-16 16:31:03 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-16 15:31:03 +0200 |
commit | ae1dea8b6499afbc35d3386654f9d0d8d208d342 (patch) | |
tree | dcd8c9b603be157f95ecb339ccb8511965b77338 /init.lua | |
parent | 9b36872d886c632ca93479321cde1e0f00629e3c (diff) |
[Feature] Expose null ls setup to user config (#1323)
* expose null_ls setup to user config
* add new config to example configs
* fix tabs with stylua
* change else statement in the example
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ require("lsp").config() local null_status_ok, null_ls = pcall(require, "null-ls") if null_status_ok then null_ls.config {} - require("lspconfig")["null-ls"].setup {} + require("lspconfig")["null-ls"].setup(lvim.lsp.null_ls.setup) end local lsp_settings_status_ok, lsp_settings = pcall(require, "nlspsettings") |