init commit

This commit is contained in:
Ralph 2024-03-25 23:43:59 -07:00
parent 914c60ae75
commit 52043a558c
3 changed files with 33 additions and 1 deletions

View file

@ -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

9
lua/plugins/coding.lua Normal file
View file

@ -0,0 +1,9 @@
return {
-- comment plugin
{
"numToStr/Comment.nvim",
event = "VeryLazy",
opts = {},
lazy = true,
},
}

23
lua/plugins/disabled.lua Normal file
View file

@ -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
}