mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 17:58:46 +02:00
add: update default config
This commit is contained in:
parent
f468320299
commit
d1e7d99d27
18 changed files with 27 additions and 101 deletions
|
@ -21,7 +21,8 @@ if data_ok then
|
|||
end
|
||||
|
||||
-- load data null-ls
|
||||
for _, nullls in pairs(vim.g.pcode_null_ls_ensure_installed) do
|
||||
local nullls_data = vim.g.pcode_null_ls_ensure_installed or {}
|
||||
for _, nullls in pairs(nullls_data) do
|
||||
table.insert(ensure_installed, nullls)
|
||||
end
|
||||
|
||||
|
@ -33,7 +34,7 @@ if mason_ok then
|
|||
end
|
||||
|
||||
local run = 0
|
||||
local frmt = vim.g.pcode_format_on_save
|
||||
local frmt = vim.g.pcode_format_on_save or 0
|
||||
if frmt == 1 then
|
||||
run = 1
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue