Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyWu20 committed May 27, 2024
1 parent 34d096b commit 1e16a61
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"mason.nvim": { "branch": "main", "commit": "49ff59aded1047a773670651cfa40e76e63c6377" },
"mini.align": { "branch": "main", "commit": "68a8d3205f0e7ce1bded057f4a851f42ef8fc584" },
"neoconf.nvim": { "branch": "main", "commit": "4e204e0d423e70293b81ba1655ed17e1f3c97986" },
"neodim": { "branch": "master", "commit": "9477da03b93f1984a81fee3b92e6ac7c6ada6aa4" },
"neodim": { "branch": "master", "commit": "0543414f1205d8937d8e703a73ae1f9948940b14" },
"neoscroll.nvim": { "branch": "master", "commit": "a731f66f1d39ec6175fd201c5bf849e54abda99c" },
"none-ls.nvim": { "branch": "main", "commit": "60f5f80686f5a272ed3281a7d4962cb54dc5348e" },
"nvim-bqf": { "branch": "main", "commit": "7751b6ef9fbc3907478eaf23e866c4316a2ed1b4" },
Expand Down
2 changes: 1 addition & 1 deletion lua/modules/configs/completion/mason-lspconfig.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ M.setup = function()
signs = true,
underline = true,
virtual_text = diagnostics_virtual_text and {
severity_limit = diagnostics_level,
min = diagnostics_level,
} or false,
-- set update_in_insert to false because it was enabled by lspsaga
update_in_insert = false,
Expand Down
4 changes: 2 additions & 2 deletions lua/modules/configs/completion/servers/lua_ls.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ return {
},
workspace = {
library = {
[vim.fn.expand("$VIMRUNTIME/lua")] = true,
[vim.fn.expand("$VIMRUNTIME/lua/vim/lsp")] = true,
vim.fn.expand("$VIMRUNTIME/lua"),
vim.fn.expand("$VIMRUNTIME/lua/vim/lsp"),
},
maxPreload = 100000,
preloadFileSize = 10000,
Expand Down
1 change: 0 additions & 1 deletion lua/modules/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ ui["nvim-lualine/lualine.nvim"] = {
}
ui["zbirenbaum/neodim"] = {
lazy = true,
commit = "9477da0",
event = "LspAttach",
config = require("ui.neodim"),
}
Expand Down

0 comments on commit 1e16a61

Please sign in to comment.