From 52043a558c013d798d673d34a2c45700b68773be Mon Sep 17 00:00:00 2001 From: Ralph Date: Mon, 25 Mar 2024 23:43:59 -0700 Subject: [PATCH] init commit --- lua/config/lazy.lua | 2 +- lua/plugins/coding.lua | 9 +++++++++ lua/plugins/disabled.lua | 23 +++++++++++++++++++++++ 3 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 lua/plugins/coding.lua create mode 100644 lua/plugins/disabled.lua diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 891b190..3ba0bbf 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -20,7 +20,7 @@ require("lazy").setup({ defaults = { -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup. -- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default. - lazy = false, + lazy = true, -- It's recommended to leave version=false for now, since a lot the plugin that support versioning, -- have outdated releases, which may break your Neovim install. version = false, -- always use the latest git commit diff --git a/lua/plugins/coding.lua b/lua/plugins/coding.lua new file mode 100644 index 0000000..eca8255 --- /dev/null +++ b/lua/plugins/coding.lua @@ -0,0 +1,9 @@ +return { + -- comment plugin + { + "numToStr/Comment.nvim", + event = "VeryLazy", + opts = {}, + lazy = true, + }, +} diff --git a/lua/plugins/disabled.lua b/lua/plugins/disabled.lua new file mode 100644 index 0000000..b575356 --- /dev/null +++ b/lua/plugins/disabled.lua @@ -0,0 +1,23 @@ +return { + -- CODING + { "echasnovski/mini.pairs", enabled = false }, + { "echasnovski/mini.surround", enabled = false }, + { "echasnovski/mini.ai", enabled = false }, + + -- added numToStr/Comment.nvim to replace the plugins below + { "echasnovski/mini.comment", enabled = false }, + { "JoosepAlviste/nvim-ts-context-commentstring", enabled = false }, + + -- EDITOR + -- remove and replace with nvim-tree; copy config to nvim-tree if possible + -- { "nvim-neo-tree/neo-tree.nvim", enabled = false }, + { "echasnovski/mini.bufremove", enabled = false }, + + -- LINTING + { "mfussenegger/nvim-lint", enabled = false }, + + -- UI + { "echasnovski/mini.indentscope", enabled = false }, + { "nvimdev/dashboard-nvim", enabled = false }, + -- add options for alpha-nvim +}