Remove junk
This commit is contained in:
parent
42493e3937
commit
0b39bcbaaa
5 changed files with 0 additions and 63 deletions
|
|
@ -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,
|
|
||||||
}
|
|
||||||
|
|
@ -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,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
return {
|
|
||||||
'saecki/crates.nvim',
|
|
||||||
tag = 'stable',
|
|
||||||
config = function()
|
|
||||||
require('crates').setup()
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
|
|
@ -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 = {},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
@ -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
|
|
||||||
},
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue