3 files changed,
0 insertions(+),
84 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2025-06-08 02:20:43 +0300
Parent:
5ff5ba5
D
@@ -1,34 +0,0 @@
----@type LazySpec -return { - "b0o/schemastore.nvim", - { import = "plugins.lsp.lazydev" }, - { import = "plugins.lsp.null-ls" }, - - { - "j-hui/fidget.nvim", - event = { "BufReadPre", "BufNewFile" }, - opts = { - progress = { - display = { - render_limit = 2, - done_ttl = 2, - }, - }, - }, - }, - - { - "RRethy/vim-illuminate", - event = { "BufReadPre", "BufNewFile" }, - opts = { - providers = { "lsp", "treesitter" }, - filetypes_denylist = { - "NeogitStatus", - "TelescopePrompt", - }, - }, - config = function(_, opts) - require("illuminate").configure(opts) - end, - }, -}
D
@@ -1,17 +0,0 @@
----@type LazySpec -return { - "folke/lazydev.nvim", - ft = "lua", - cmd = "LazyDev", - ---@module "lazydev" - ---@type lazydev.Config - opts = { - library = { - { path = "${3rd}/luv/library", words = { "vim%.uv" } }, - { path = "mini.test", words = { "MiniTest" } }, - { path = "mini.ai", words = { "MiniAI" } }, - "snacks.nvim", - "lazy.nvim", - }, - }, -}
D
@@ -1,33 +0,0 @@
----@type LazySpec -return { - "nvimtools/none-ls.nvim", - event = { "BufReadPre", "BufNewFile" }, - config = function() - local null_ls = require "null-ls" - local formatting = null_ls.builtins.formatting - local diagnostic = null_ls.builtins.diagnostics - - null_ls.setup { - sources = { - formatting.pg_format, - diagnostic.codespell.with { - args = { - "--ignore-words", - vim.env.HOME .. "/.config/codespell-ignore.txt", - "-", - }, - }, - - formatting.stylua, - diagnostic.selene.with { - condition = function(utils) - return utils.root_has_file "selene.toml" - end, - }, - - formatting.goimports, - formatting.golines, - }, - } - end, -}