mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-24 13:31:04 +00:00
init commit
This commit is contained in:
parent
914c60ae75
commit
52043a558c
3 changed files with 33 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ require("lazy").setup({
|
||||||
defaults = {
|
defaults = {
|
||||||
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
-- 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.
|
-- 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,
|
-- 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.
|
-- have outdated releases, which may break your Neovim install.
|
||||||
version = false, -- always use the latest git commit
|
version = false, -- always use the latest git commit
|
||||||
|
|
|
||||||
9
lua/plugins/coding.lua
Normal file
9
lua/plugins/coding.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
return {
|
||||||
|
-- comment plugin
|
||||||
|
{
|
||||||
|
"numToStr/Comment.nvim",
|
||||||
|
event = "VeryLazy",
|
||||||
|
opts = {},
|
||||||
|
lazy = true,
|
||||||
|
},
|
||||||
|
}
|
||||||
23
lua/plugins/disabled.lua
Normal file
23
lua/plugins/disabled.lua
Normal 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
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue