Remove junk

This commit is contained in:
Imbus 2026-02-19 05:19:27 +01:00
parent 42493e3937
commit 0b39bcbaaa
5 changed files with 0 additions and 63 deletions

View file

@ -1,11 +0,0 @@
-- Blame in window or virtual text
-- See: https://github.com/FabijanZulj/blame.nvim
--
-- Exposes ":BlameToggle [view]"
-- where view is one of 'window' or 'virtual'
return {
'FabijanZulj/blame.nvim',
config = function()
require('blame').setup()
end,
}

View file

@ -1,26 +0,0 @@
return {
{
"Olical/conjure",
ft = { "clojure", "fennel", "python", "janet" }, -- etc
lazy = true,
init = function()
-- Set configuration options here
-- Uncomment this to get verbose logging to help diagnose internal Conjure issues
-- This is VERY helpful when reporting an issue with the project
-- vim.g["conjure#debug"] = true
end,
-- Optional cmp-conjure integration
dependencies = { "PaterJason/cmp-conjure" },
},
{
"PaterJason/cmp-conjure",
lazy = true,
config = function()
local cmp = require("cmp")
local config = cmp.get_config()
table.insert(config.sources, { name = "conjure" })
return cmp.setup(config)
end,
},
}

View file

@ -1,7 +0,0 @@
return {
'saecki/crates.nvim',
tag = 'stable',
config = function()
require('crates').setup()
end,
}

View file

@ -1,9 +0,0 @@
return {
{ -- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl`
main = 'ibl',
opts = {},
},
}

View file

@ -1,10 +0,0 @@
return {
'nvim-neo-tree/neo-tree.nvim',
branch = 'v3.x',
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended
'MunifTanjim/nui.nvim',
-- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
},
}