deleted stuff
This commit is contained in:
parent
53067d4410
commit
cce7eb3ce9
9 changed files with 1 additions and 607 deletions
|
@ -1,6 +0,0 @@
|
|||
return {
|
||||
"RishabhRD/nvim-cheat.sh",
|
||||
dependencies = {
|
||||
{ "RishabhRD/popfix" },
|
||||
},
|
||||
}
|
|
@ -1,112 +0,0 @@
|
|||
-- return {
|
||||
-- {
|
||||
-- "zbirenbaum/copilot.lua",
|
||||
-- cmd = "Copilot",
|
||||
-- build = ":Copilot auth",
|
||||
-- opts = {
|
||||
-- suggestion = { enabled = false },
|
||||
-- panel = { enabled = false },
|
||||
-- filetypes = {
|
||||
-- markdown = true,
|
||||
-- help = true,
|
||||
-- },
|
||||
-- },
|
||||
-- keys = {
|
||||
-- {
|
||||
-- "<leader>at",
|
||||
-- function()
|
||||
-- if require("copilot.client").is_disabled() then
|
||||
-- require("copilot.command").enable()
|
||||
-- else
|
||||
-- require("copilot.command").disable()
|
||||
-- end
|
||||
-- end,
|
||||
-- desc = "Toggle (Copilot)",
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- {
|
||||
-- "folke/which-key.nvim",
|
||||
-- opts = {
|
||||
-- icons = {
|
||||
-- rules = {
|
||||
-- { plugin = "copilot.lua", icon = " ", color = "orange" }
|
||||
-- }
|
||||
-- }
|
||||
-- }
|
||||
-- },
|
||||
-- {
|
||||
-- "nvim-cmp",
|
||||
-- dependencies = {
|
||||
-- {
|
||||
-- "zbirenbaum/copilot-cmp",
|
||||
-- dependencies = "copilot.lua",
|
||||
-- opts = {},
|
||||
-- config = function(_, opts)
|
||||
-- local copilot_cmp = require("copilot_cmp")
|
||||
-- copilot_cmp.setup(opts)
|
||||
-- -- attach cmp source whenever copilot attaches
|
||||
-- -- fixes lazy-loading issues with the copilot cmp source
|
||||
-- LazyVim.lsp.on_attach(function(client)
|
||||
-- copilot_cmp._on_insert_enter({})
|
||||
-- end, "copilot")
|
||||
-- end,
|
||||
-- },
|
||||
-- },
|
||||
-- ---@param opts cmp.ConfigSchema
|
||||
-- opts = function(_, opts)
|
||||
-- table.insert(opts.sources, 1, {
|
||||
-- name = "copilot",
|
||||
-- group_index = 1,
|
||||
-- priority = 100,
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
-- {
|
||||
-- "zbirenbaum/copilot-cmp",
|
||||
-- -- enabled = false,
|
||||
-- dependencies = "copilot.lua",
|
||||
-- opts = {},
|
||||
-- config = function(_, opts)
|
||||
-- local copilot_cmp = require("copilot_cmp")
|
||||
-- copilot_cmp.setup(opts)
|
||||
-- -- attach cmp source whenever copilot attaches
|
||||
-- -- fixes lazy-loading issues with the copilot cmp source
|
||||
-- LazyVim.lsp.on_attach(function(client)
|
||||
-- copilot_cmp._on_insert_enter({})
|
||||
-- end, "copilot")
|
||||
-- end,
|
||||
-- },
|
||||
-- {
|
||||
-- "CopilotC-Nvim/CopilotChat.nvim",
|
||||
-- opts = function()
|
||||
-- local user = vim.env.USER or "User"
|
||||
-- user = user:sub(1, 1):upper() .. user:sub(2)
|
||||
-- return {
|
||||
-- auto_insert_mode = false,
|
||||
-- show_help = true,
|
||||
-- question_header = " " .. user .. " ",
|
||||
-- answer_header = " Copilot ",
|
||||
-- window = {
|
||||
-- width = 0.4,
|
||||
-- },
|
||||
-- selection = function(source)
|
||||
-- local select = require("CopilotChat.select")
|
||||
-- return select.visual(source) or select.buffer(source)
|
||||
-- end,
|
||||
-- }
|
||||
-- end,
|
||||
-- },
|
||||
-- {
|
||||
-- "folke/edgy.nvim",
|
||||
-- optional = true,
|
||||
-- opts = function(_, opts)
|
||||
-- opts.right = opts.right or {}
|
||||
-- table.insert(opts.right, {
|
||||
-- ft = "copilot-chat",
|
||||
-- title = "Copilot Chat",
|
||||
-- size = { width = 100 },
|
||||
-- })
|
||||
-- end,
|
||||
-- },
|
||||
-- }
|
|
@ -1,52 +0,0 @@
|
|||
return {
|
||||
"echasnovski/mini.animate",
|
||||
recommended = true,
|
||||
event = "VeryLazy",
|
||||
opts = function()
|
||||
-- don't use animate when scrolling with the mouse
|
||||
local mouse_scrolled = false
|
||||
for _, scroll in ipairs({ "Up", "Down" }) do
|
||||
local key = "<ScrollWheel" .. scroll .. ">"
|
||||
vim.keymap.set({ "", "i" }, key, function()
|
||||
mouse_scrolled = true
|
||||
return key
|
||||
end, { expr = true })
|
||||
end
|
||||
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = "grug-far",
|
||||
callback = function()
|
||||
vim.b.minianimate_disable = true
|
||||
end,
|
||||
})
|
||||
|
||||
LazyVim.toggle.map("<leader>ua", {
|
||||
name = "Mini Animate",
|
||||
get = function()
|
||||
return not vim.g.minianimate_disable
|
||||
end,
|
||||
set = function(state)
|
||||
vim.g.minianimate_disable = not state
|
||||
end,
|
||||
})
|
||||
|
||||
local animate = require("mini.animate")
|
||||
return {
|
||||
resize = {
|
||||
timing = animate.gen_timing.linear({ duration = 50, unit = "total" }),
|
||||
},
|
||||
scroll = {
|
||||
timing = animate.gen_timing.linear({ duration = 50, unit = "total" }),
|
||||
subscroll = animate.gen_subscroll.equal({
|
||||
predicate = function(total_scroll)
|
||||
if mouse_scrolled then
|
||||
mouse_scrolled = false
|
||||
return false
|
||||
end
|
||||
return total_scroll > 1
|
||||
end,
|
||||
}),
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
return {
|
||||
"mracos/mermaid.vim",
|
||||
}
|
|
@ -1,52 +0,0 @@
|
|||
-- return {
|
||||
-- {
|
||||
-- "nvim-neorg/neorg",
|
||||
-- lazy = true, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
|
||||
-- version = "*", -- Pin Neorg to the latest stable release
|
||||
-- config = {
|
||||
-- load = {
|
||||
-- -- ["external.conceal-wrap"] = {},
|
||||
-- -- ["external.context"] = {},
|
||||
-- ["core.defaults"] = {},
|
||||
-- ["core.concealer"] = {},
|
||||
-- ["core.export"] = {},
|
||||
-- ["core.export.markdown"] = {},
|
||||
-- ["core.journal"] = {},
|
||||
-- ["core.queries.native"] = {},
|
||||
-- -- ["core.integrations.zen_mode"] = {},
|
||||
-- -- ["core.presenter"] = {
|
||||
-- -- config = {
|
||||
-- -- zen_mode = "zen-mode",
|
||||
-- -- },
|
||||
-- -- },
|
||||
-- ["core.summary"] = {},
|
||||
-- ["core.text-objects"] = {},
|
||||
-- -- ["core.latex.renderer"] = {},
|
||||
-- ["core.completion"] = {
|
||||
-- config = {
|
||||
-- engine = "nvim-cmp",
|
||||
-- },
|
||||
-- },
|
||||
-- ["core.keybinds"] = {
|
||||
-- config = {
|
||||
-- default_keybinds = true,
|
||||
-- preset = "neorg",
|
||||
-- },
|
||||
-- },
|
||||
-- ["core.dirman"] = {
|
||||
-- config = {
|
||||
-- workspaces = {
|
||||
-- notes = "/home/fic/notes",
|
||||
-- },
|
||||
-- default_workspace = "notes",
|
||||
-- index = "index.norg",
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- },
|
||||
-- dependencies = {
|
||||
-- -- "benlubas/neorg-conceal-wrap",
|
||||
-- "max397574/neorg-contexts",
|
||||
-- },
|
||||
-- },
|
||||
-- }
|
|
@ -1,19 +0,0 @@
|
|||
-- return {
|
||||
-- "nvim-orgmode/orgmode",
|
||||
-- event = "VeryLazy",
|
||||
-- ft = { "org" },
|
||||
-- config = function()
|
||||
-- -- Setup orgmode
|
||||
-- require("orgmode").setup({
|
||||
-- org_agenda_files = "~/orgfiles/**/*",
|
||||
-- org_default_notes_file = "~/orgfiles/refile.org",
|
||||
-- })
|
||||
--
|
||||
-- -- NOTE: If you are using nvim-treesitter with ~ensure_installed = "all"~ option
|
||||
-- -- add ~org~ to ignore_install
|
||||
-- -- require('nvim-treesitter.configs').setup({
|
||||
-- -- ensure_installed = 'all',
|
||||
-- -- ignore_install = { 'org' },
|
||||
-- -- })
|
||||
-- end,
|
||||
-- }
|
Loading…
Add table
Add a link
Reference in a new issue