option full_feature, false when not need much plugin
This commit is contained in:
parent
1d2561beae
commit
80b82caf95
2
init.lua
2
init.lua
|
@ -24,6 +24,8 @@ vim.keymap.set("n", "<F3>", "<cmd>bdelete<CR>", { silent = true })
|
|||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
full_feature = false
|
||||
|
||||
-- Use lazy.nvim as plugin manager, and load plugin's config
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
|
|
|
@ -9,6 +9,7 @@ return {
|
|||
},
|
||||
{
|
||||
"karb94/neoscroll.nvim",
|
||||
enabled = full_feature,
|
||||
main = "neoscroll",
|
||||
opts = { },
|
||||
},
|
||||
|
@ -22,6 +23,7 @@ return {
|
|||
},
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
enabled = full_feature,
|
||||
main = "bufferline",
|
||||
opts = {
|
||||
options = {
|
||||
|
@ -45,6 +47,7 @@ return {
|
|||
},
|
||||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
enabled = full_feature,
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons"
|
||||
},
|
||||
|
@ -56,6 +59,7 @@ return {
|
|||
},
|
||||
{
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
enabled = full_feature,
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
return {
|
||||
"lewis6991/gitsigns.nvim",
|
||||
main = "gitsigns",
|
||||
enabled = full_feature,
|
||||
opts = {
|
||||
on_attach = function(bufnr)
|
||||
local gs = package.loaded.gitsigns
|
||||
|
|
64
lua/plugins/20-treesitter.lua
Normal file
64
lua/plugins/20-treesitter.lua
Normal file
|
@ -0,0 +1,64 @@
|
|||
local full_ensure = {
|
||||
"bash",
|
||||
"c",
|
||||
"cmake",
|
||||
"cpp",
|
||||
"css",
|
||||
"diff",
|
||||
"dockerfile",
|
||||
"git_config",
|
||||
"git_rebase",
|
||||
"gitattributes",
|
||||
"gitcommit",
|
||||
"gitignore",
|
||||
"go",
|
||||
"gomod",
|
||||
"gosum",
|
||||
"html",
|
||||
"java",
|
||||
"javascript",
|
||||
"json",
|
||||
"json5",
|
||||
"jsonc",
|
||||
"lua",
|
||||
"luadoc",
|
||||
"luau",
|
||||
"make",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"python",
|
||||
"rust",
|
||||
"scss",
|
||||
"sql",
|
||||
"toml",
|
||||
"vim",
|
||||
"vimdoc",
|
||||
"yaml"
|
||||
}
|
||||
|
||||
local basic_ensure = {
|
||||
"toml",
|
||||
"json",
|
||||
"json5",
|
||||
"jsonc",
|
||||
"yaml",
|
||||
}
|
||||
|
||||
if full_feature then
|
||||
ensure = full_ensure
|
||||
else
|
||||
ensure = basic_ensure
|
||||
end
|
||||
|
||||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
main = "nvim-treesitter.configs",
|
||||
build = ":TSUpdate",
|
||||
opts = {
|
||||
indent = { enable = true },
|
||||
highlight = { enable = true },
|
||||
ensure_installed = ensure,
|
||||
auto_install = true,
|
||||
sync_install = false,
|
||||
},
|
||||
}
|
|
@ -39,6 +39,7 @@ end
|
|||
return {
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
enabled = full_feature,
|
||||
dependencies = {
|
||||
"hrsh7th/nvim-cmp",
|
||||
"hrsh7th/cmp-nvim-lsp",
|
||||
|
|
|
@ -1,48 +0,0 @@
|
|||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
main = "nvim-treesitter.configs",
|
||||
build = ":TSUpdate",
|
||||
opts = {
|
||||
indent = { enable = true },
|
||||
highlight = { enable = true },
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"c",
|
||||
"cmake",
|
||||
"cpp",
|
||||
"css",
|
||||
"diff",
|
||||
"dockerfile",
|
||||
"git_config",
|
||||
"git_rebase",
|
||||
"gitattributes",
|
||||
"gitcommit",
|
||||
"gitignore",
|
||||
"go",
|
||||
"gomod",
|
||||
"gosum",
|
||||
"html",
|
||||
"java",
|
||||
"javascript",
|
||||
"json",
|
||||
"json5",
|
||||
"jsonc",
|
||||
"lua",
|
||||
"luadoc",
|
||||
"luau",
|
||||
"make",
|
||||
"markdown",
|
||||
"markdown_inline",
|
||||
"python",
|
||||
"rust",
|
||||
"scss",
|
||||
"sql",
|
||||
"toml",
|
||||
"vim",
|
||||
"vimdoc",
|
||||
"yaml"
|
||||
},
|
||||
auto_install = true,
|
||||
sync_install = false,
|
||||
},
|
||||
}
|
Loading…
Reference in a new issue