diff --git a/lua/plugins/blame-nvim.lua b/lua/plugins/blame-nvim.lua deleted file mode 100644 index d28b2f0..0000000 --- a/lua/plugins/blame-nvim.lua +++ /dev/null @@ -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, -} diff --git a/lua/plugins/conjure.lua b/lua/plugins/conjure.lua deleted file mode 100644 index e54c619..0000000 --- a/lua/plugins/conjure.lua +++ /dev/null @@ -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, - }, -} diff --git a/lua/plugins/crates-nvim.lua b/lua/plugins/crates-nvim.lua deleted file mode 100644 index 77f9beb..0000000 --- a/lua/plugins/crates-nvim.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - 'saecki/crates.nvim', - tag = 'stable', - config = function() - require('crates').setup() - end, -} diff --git a/lua/plugins/indent_line.lua b/lua/plugins/indent_line.lua deleted file mode 100644 index ed7f269..0000000 --- a/lua/plugins/indent_line.lua +++ /dev/null @@ -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 = {}, - }, -} diff --git a/lua/plugins/neo-tree.lua b/lua/plugins/neo-tree.lua deleted file mode 100644 index dacde08..0000000 --- a/lua/plugins/neo-tree.lua +++ /dev/null @@ -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 - }, -}