mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-07-01 20:59:26 +00:00
[neovim] Update dependencies
This commit is contained in:
@ -62,20 +62,14 @@ keymap("n", "<S-q>", "<cmd>Bdelete!<cr>", vim.tbl_extend("force", opts, { desc =
|
||||
keymap(
|
||||
"n",
|
||||
"<leader>xx",
|
||||
"<cmd>TroubleToggle<cr>",
|
||||
"<cmd>Trouble diagnostics toggle<cr>",
|
||||
vim.tbl_extend("force", opts, { desc = "Toggle trouble diganostics" })
|
||||
)
|
||||
keymap(
|
||||
"n",
|
||||
"<leader>xw",
|
||||
"<cmd>TroubleToggle workspace_diagnostics<cr>",
|
||||
vim.tbl_extend("force", opts, { desc = "Toggle trouble workspace diganostics" })
|
||||
)
|
||||
keymap(
|
||||
"n",
|
||||
"<leader>xd",
|
||||
"<cmd>TroubleToggle document_diagnostics<cr>",
|
||||
vim.tbl_extend("force", opts, { desc = "Toggle trouble document diganostics" })
|
||||
"<cmd>Trouble diagnostics toggle filter.buf=0<cr>",
|
||||
vim.tbl_extend("force", opts, { desc = "Toggle trouble buffer diganostics" })
|
||||
)
|
||||
keymap(
|
||||
"n",
|
||||
|
@ -191,7 +191,7 @@ require("lazy").setup({
|
||||
{ "williamboman/mason-lspconfig.nvim" },
|
||||
{ "nvimtools/none-ls.nvim", event = "BufReadPre" },
|
||||
{ "RRethy/vim-illuminate", event = "BufReadPost" },
|
||||
{ "folke/trouble.nvim", cmd = { "TroubleToggle", "Trouble" } },
|
||||
{ "folke/trouble.nvim", branch = "dev" },
|
||||
{ "glepnir/lspsaga.nvim", event = "BufRead" },
|
||||
{ "arkav/lualine-lsp-progress" },
|
||||
|
||||
|
@ -8,13 +8,14 @@ return {
|
||||
diagnosticsMode = "openFilesOnly", -- workspace, openFilesOnly
|
||||
diagnosticSeverityOverrides = {
|
||||
typeCheckingMode = "standard", -- off, basic, standard, strict, all
|
||||
reportGeneralTypeIssues = "information",
|
||||
reportAny = false,
|
||||
reportDeprecated = "information",
|
||||
reportMissingTypeStubs = "information",
|
||||
reportOptionalIterable = "information",
|
||||
reportUnknownMemberType = "information",
|
||||
reportUnknownVariableType = "information",
|
||||
reportArgumentType = "information",
|
||||
reportIndexIssues = "information",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
@ -4,6 +4,7 @@ require("nvim-treesitter.configs").setup({
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"bash",
|
||||
"diff",
|
||||
"python",
|
||||
"go",
|
||||
"gomod",
|
||||
|
Reference in New Issue
Block a user