лучше не лезьте

This commit is contained in:
2024-09-22 19:29:25 +04:00
parent 94e0023367
commit de3262e579
27 changed files with 1305 additions and 421 deletions

View File

@@ -11,7 +11,6 @@ vim.list_extend(lvim.lsp.automatic_configuration.skipped_servers, { "rust_analyz
require "plugins.init"
require "mappings"
require "configs.noice"
require "configs.nvimtree"
require "configs.bufferline"
require "configs.dropbar"

View File

@@ -38,6 +38,7 @@
"nord.nvim": { "branch": "main", "commit": "6d6bae56a002a4da507ba263776e9691f47deb5f" },
"nui.nvim": { "branch": "main", "commit": "61574ce6e60c815b0a0c4b5655b8486ba58089a1" },
"nvim-autopairs": { "branch": "master", "commit": "14e97371b2aab6ee70054c1070a123dfaa3e217e" },
"nvim-bqf": { "branch": "main", "commit": "1b24dc6050c34e8cd377b6b4cd6abe40509e0187" },
"nvim-cmp": { "branch": "main", "commit": "cd2cf0c124d3de577fb5449746568ee8e601afc8" },
"nvim-colorizer.lua": { "branch": "master", "commit": "194ec600488f7c7229668d0e80bd197f3a2b84ff" },
"nvim-dap": { "branch": "master", "commit": "13ce59d4852be2bb3cd4967947985cb0ceaff460" },

View File

@@ -19,6 +19,9 @@ lvim.plugins = {
{
'rust-lang/rust.vim',
},
{
'kevinhwang91/nvim-bqf'
},
{
'MunifTanjim/prettier.nvim'
},
@@ -186,14 +189,21 @@ lvim.plugins = {
{
"folke/noice.nvim",
event = "VeryLazy",
opts = {
routes = {
{
filter = { event = "notify", find = "No information available" },
opts = { skip = true },
},
},
presets = {
lsp_doc_border = true,
},
},
dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim",
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
"rcarriga/nvim-notify",
}
}
},
},
}