diff --git a/lua/custom/plugins/alpha.lua b/lua/custom/plugins/alpha.lua deleted file mode 100644 index 771e9c2d..00000000 --- a/lua/custom/plugins/alpha.lua +++ /dev/null @@ -1,29 +0,0 @@ -return { - { - 'goolord/alpha-nvim', - event = 'VimEnter', - enabled = false, - init = false, - dependencies = { - 'echasnovski/mini.icons', - 'nvim-lua/plenary.nvim', - }, - config = function() - local alpha = require 'alpha' - local dashboard = require 'alpha.themes.dashboard' - - dashboard.section.buttons.val = { - dashboard.button('e', ' New file', 'ene '), - dashboard.button('f', '󰈞 Find file', 'Telescope find_files'), - dashboard.button('h', '󰊄 Recently opened files', 'Telescope oldfiles'), - dashboard.button('g', '󰈬 Find word', 'Telescope live_grep'), - dashboard.button('s', ' Open last session', ' lua require("persistence").load() '), - dashboard.button('sl', ' Select Session', ' lua require("persistence").select() '), - dashboard.button('u', ' Update plugins', 'Lazy sync'), - dashboard.button('c', ' Configuration', "lua require('telescope.builtin').find_files { cwd = vim.fn.stdpath 'config' } "), - dashboard.button('q', '󰅚 Quit', 'qa'), - } - alpha.setup(dashboard.config) - end, - }, -} diff --git a/lua/custom/plugins/grug.lua b/lua/custom/plugins/grug.lua deleted file mode 100644 index 294bec51..00000000 --- a/lua/custom/plugins/grug.lua +++ /dev/null @@ -1,22 +0,0 @@ -return { - 'MagicDuck/grug-far.nvim', - opts = { headerMaxWidth = 80 }, - cmd = 'GrugFar', - keys = { - { - 'sR', - function() - local grug = require 'grug-far' - local ext = vim.bo.buftype == '' and vim.fn.expand '%:e' - grug.open { - transient = true, - prefills = { - filesFilter = ext and ext ~= '' and '*.' .. ext or nil, - }, - } - end, - mode = { 'n', 'v' }, - desc = 'Search and Replace', - }, - }, -} diff --git a/lua/custom/plugins/marks.lua b/lua/custom/plugins/marks.lua deleted file mode 100644 index 2c63d712..00000000 --- a/lua/custom/plugins/marks.lua +++ /dev/null @@ -1,5 +0,0 @@ -return { - 'chentoast/marks.nvim', - event = 'VeryLazy', - opts = {}, -} diff --git a/lua/custom/plugins/session.lua b/lua/custom/plugins/session.lua deleted file mode 100644 index 4846774e..00000000 --- a/lua/custom/plugins/session.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - { - 'folke/persistence.nvim', - event = 'BufReadPre', - opts = {}, - }, -}