mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
🤖 I have created a release *beep* *boop* --- ## [14.0.0](https://github.com/LazyVim/LazyVim/compare/v13.9.1...v14.0.0) (2024-12-13) ### ⚠ BREAKING CHANGES * **cmp:** moved `nvim-cmp` to extras and prefer `blink.cmp` on Neovim >= `0.10` as default completion engine * **cmp:** moved `nvim-cmp` to extras and prefer `blink.cmp` on Neovim >= `0.10` as default completion engine * **snacks:** use `snacks.scope` indent objects in favor of custom `mini.ai` indent objects * **snacks:** use `snacks.indent` and moved `indent-blankline` to extras * **pick:** make fzf the default picker for LazyVim ### Features * **cmp:** moved `nvim-cmp` to extras and prefer `blink.cmp` on Neovim >= `0.10` as default completion engine ([152f9d1
](152f9d113f
)) * **cmp:** moved `nvim-cmp` to extras and prefer `blink.cmp` on Neovim >= `0.10` as default completion engine ([2cbfb9b
](2cbfb9b6b7
)) * **keymaps:** added leader-uD to toggle dim mode ([9b97388
](9b973882b8
)) * **keymaps:** added leader-z to toggle zen mode ([e6d6a09
](e6d6a096b3
)) * **keymaps:** added leader-Z to toggle zoom ([f2e1cac
](f2e1cac965
)) * **lualine:** add snacks profiler status ([7bc8490
](7bc8490d46
)) * **pick:** make fzf the default picker for LazyVim ([ae2340f
](ae2340f60a
)) * **rust:** exclude bad directories from rust-analyzer ([#5021](https://github.com/LazyVim/LazyVim/issues/5021)) ([94f6df0
](94f6df048f
)) * **snacks:** added `snacks.input` ([54bece1
](54bece17b3
)) * **snacks:** added leader-ua to toggle global animations ([303980d
](303980d267
)) * **snacks:** added leader-ug to toggle indent guides ([b3ac642
](b3ac642317
)) * **snacks:** added leader-uS to toggle scroll ([cded8d4
](cded8d4d28
)) * **snacks:** added profiler keymaps ([a8332c6
](a8332c6d50
)) * **snacks:** enable `snacks.scroll` ([1a1a484
](1a1a48497c
)) * **snacks:** use `snacks.indent` and moved `indent-blankline` to extras ([94fdc42
](94fdc421a1
)) * **snacks:** use `snacks.scope` indent objects in favor of custom `mini.ai` indent objects ([d904a1e
](d904a1ef47
)) * **snacks:** use `Snacks.zen.zoom()` instead of custom **maximize** ([e389a5a
](e389a5ada9
)) * **which-key:** make `helix` the default which-key preset ([44c712a
](44c712aa31
)) * **zen:** zoom with leader-wm and leader-uZ. zen with leader-uz ([2acedaa
](2acedaa3a8
)) ### Bug Fixes * **blink:** disable cmdline integration for now since it doesn't work well with the enter keymap ([20eff4f
](20eff4fc3f
)) * **blink:** remove unneeded code ([d95e530
](d95e530c02
)) * **blink:** unset provider.kind ([#5024](https://github.com/LazyVim/LazyVim/issues/5024)) ([29c4dea
](29c4dea4e7
)) * **blink:** unset sources.compat. Fixes [#5016](https://github.com/LazyVim/LazyVim/issues/5016). Closes [#5017](https://github.com/LazyVim/LazyVim/issues/5017) ([2946031
](29460318f3
)) * **clangd:** avoid nil-indexing the completion sorting comparators ([#5011](https://github.com/LazyVim/LazyVim/issues/5011)) ([c4b0d6d
](c4b0d6d0d1
)) * **clangd:** nvim-cmp optional ([94be6fb
](94be6fb787
)) * **copliot:** restructure copilot-cmp spec ([34d2bdc
](34d2bdcac6
)) * fqn for nvim-cmp ([a9a273d
](a9a273d041
)) * **git:** make nvim-cmp optional for the git extra ([ec92fa8
](ec92fa8558
)) * **java:** only setup debug adapter config if mason is installed ([#5013](https://github.com/LazyVim/LazyVim/issues/5013)) ([aad0edb
](aad0edbf74
)) * **java:** only setup debug adapter config if mason is installed (for real this time) ([#5014](https://github.com/LazyVim/LazyVim/issues/5014)) ([5b1b6b2
](5b1b6b29d7
)) * **java:** only use mason-registry if mason installed ([#4991](https://github.com/LazyVim/LazyVim/issues/4991)) ([21b02f0
](21b02f056d
)) * **mini.animate:** disable `snacks.scroll` when `mini.animate` is enabled ([9b07544
](9b07544e89
)) * **mini.indentscope:** disable snacks and indent-blankline scope ([98c77f1
](98c77f1de4
)) * **nvim-cmp:** set high prio for loading the nvim-cmp extra to prevent issues with opts ([adf8db6
](adf8db69ed
)) * **nvim-cmp:** specs ([88e77b0
](88e77b0e24
)) * **ui:** use `Snacks.util.color` instead of `LazyVim.ui.fg` ([6d774ba
](6d774ba8f2
)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
315 lines
8.2 KiB
Lua
315 lines
8.2 KiB
Lua
_G.LazyVim = require("lazyvim.util")
|
|
|
|
---@class LazyVimConfig: LazyVimOptions
|
|
local M = {}
|
|
|
|
M.version = "14.0.0" -- x-release-please-version
|
|
LazyVim.config = M
|
|
|
|
---@class LazyVimOptions
|
|
local defaults = {
|
|
-- colorscheme can be a string like `catppuccin` or a function that will load the colorscheme
|
|
---@type string|fun()
|
|
colorscheme = function()
|
|
require("tokyonight").load()
|
|
end,
|
|
-- load the default settings
|
|
defaults = {
|
|
autocmds = true, -- lazyvim.config.autocmds
|
|
keymaps = true, -- lazyvim.config.keymaps
|
|
-- lazyvim.config.options can't be configured here since that's loaded before lazyvim setup
|
|
-- if you want to disable loading options, add `package.loaded["lazyvim.config.options"] = true` to the top of your init.lua
|
|
},
|
|
news = {
|
|
-- When enabled, NEWS.md will be shown when changed.
|
|
-- This only contains big new features and breaking changes.
|
|
lazyvim = true,
|
|
-- Same but for Neovim's news.txt
|
|
neovim = false,
|
|
},
|
|
-- icons used by other plugins
|
|
-- stylua: ignore
|
|
icons = {
|
|
misc = {
|
|
dots = "",
|
|
},
|
|
ft = {
|
|
octo = "",
|
|
},
|
|
dap = {
|
|
Stopped = { " ", "DiagnosticWarn", "DapStoppedLine" },
|
|
Breakpoint = " ",
|
|
BreakpointCondition = " ",
|
|
BreakpointRejected = { " ", "DiagnosticError" },
|
|
LogPoint = ".>",
|
|
},
|
|
diagnostics = {
|
|
Error = " ",
|
|
Warn = " ",
|
|
Hint = " ",
|
|
Info = " ",
|
|
},
|
|
git = {
|
|
added = " ",
|
|
modified = " ",
|
|
removed = " ",
|
|
},
|
|
kinds = {
|
|
Array = " ",
|
|
Boolean = " ",
|
|
Class = " ",
|
|
Codeium = " ",
|
|
Color = " ",
|
|
Control = " ",
|
|
Collapsed = " ",
|
|
Constant = " ",
|
|
Constructor = " ",
|
|
Copilot = " ",
|
|
Enum = " ",
|
|
EnumMember = " ",
|
|
Event = " ",
|
|
Field = " ",
|
|
File = " ",
|
|
Folder = " ",
|
|
Function = " ",
|
|
Interface = " ",
|
|
Key = " ",
|
|
Keyword = " ",
|
|
Method = " ",
|
|
Module = " ",
|
|
Namespace = " ",
|
|
Null = " ",
|
|
Number = " ",
|
|
Object = " ",
|
|
Operator = " ",
|
|
Package = " ",
|
|
Property = " ",
|
|
Reference = " ",
|
|
Snippet = " ",
|
|
String = " ",
|
|
Struct = " ",
|
|
Supermaven = " ",
|
|
TabNine = " ",
|
|
Text = " ",
|
|
TypeParameter = " ",
|
|
Unit = " ",
|
|
Value = " ",
|
|
Variable = " ",
|
|
},
|
|
},
|
|
---@type table<string, string[]|boolean>?
|
|
kind_filter = {
|
|
default = {
|
|
"Class",
|
|
"Constructor",
|
|
"Enum",
|
|
"Field",
|
|
"Function",
|
|
"Interface",
|
|
"Method",
|
|
"Module",
|
|
"Namespace",
|
|
"Package",
|
|
"Property",
|
|
"Struct",
|
|
"Trait",
|
|
},
|
|
markdown = false,
|
|
help = false,
|
|
-- you can specify a different filter for each filetype
|
|
lua = {
|
|
"Class",
|
|
"Constructor",
|
|
"Enum",
|
|
"Field",
|
|
"Function",
|
|
"Interface",
|
|
"Method",
|
|
"Module",
|
|
"Namespace",
|
|
-- "Package", -- remove package since luals uses it for control flow structures
|
|
"Property",
|
|
"Struct",
|
|
"Trait",
|
|
},
|
|
},
|
|
}
|
|
|
|
M.json = {
|
|
version = 7,
|
|
path = vim.g.lazyvim_json or vim.fn.stdpath("config") .. "/lazyvim.json",
|
|
data = {
|
|
version = nil, ---@type string?
|
|
news = {}, ---@type table<string, string>
|
|
extras = {}, ---@type string[]
|
|
},
|
|
}
|
|
|
|
function M.json.load()
|
|
local f = io.open(M.json.path, "r")
|
|
if f then
|
|
local data = f:read("*a")
|
|
f:close()
|
|
local ok, json = pcall(vim.json.decode, data, { luanil = { object = true, array = true } })
|
|
if ok then
|
|
M.json.data = vim.tbl_deep_extend("force", M.json.data, json or {})
|
|
if M.json.data.version ~= M.json.version then
|
|
LazyVim.json.migrate()
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
---@type LazyVimOptions
|
|
local options
|
|
local lazy_clipboard
|
|
|
|
---@param opts? LazyVimOptions
|
|
function M.setup(opts)
|
|
options = vim.tbl_deep_extend("force", defaults, opts or {}) or {}
|
|
|
|
-- autocmds can be loaded lazily when not opening a file
|
|
local lazy_autocmds = vim.fn.argc(-1) == 0
|
|
if not lazy_autocmds then
|
|
M.load("autocmds")
|
|
end
|
|
|
|
local group = vim.api.nvim_create_augroup("LazyVim", { clear = true })
|
|
vim.api.nvim_create_autocmd("User", {
|
|
group = group,
|
|
pattern = "VeryLazy",
|
|
callback = function()
|
|
if lazy_autocmds then
|
|
M.load("autocmds")
|
|
end
|
|
M.load("keymaps")
|
|
if lazy_clipboard ~= nil then
|
|
vim.opt.clipboard = lazy_clipboard
|
|
end
|
|
|
|
LazyVim.format.setup()
|
|
LazyVim.news.setup()
|
|
LazyVim.root.setup()
|
|
|
|
vim.api.nvim_create_user_command("LazyExtras", function()
|
|
LazyVim.extras.show()
|
|
end, { desc = "Manage LazyVim extras" })
|
|
|
|
vim.api.nvim_create_user_command("LazyHealth", function()
|
|
vim.cmd([[Lazy! load all]])
|
|
vim.cmd([[checkhealth]])
|
|
end, { desc = "Load all plugins and run :checkhealth" })
|
|
|
|
local health = require("lazy.health")
|
|
vim.list_extend(health.valid, {
|
|
"recommended",
|
|
"desc",
|
|
"vscode",
|
|
})
|
|
end,
|
|
})
|
|
|
|
LazyVim.track("colorscheme")
|
|
LazyVim.try(function()
|
|
if type(M.colorscheme) == "function" then
|
|
M.colorscheme()
|
|
else
|
|
vim.cmd.colorscheme(M.colorscheme)
|
|
end
|
|
end, {
|
|
msg = "Could not load your colorscheme",
|
|
on_error = function(msg)
|
|
LazyVim.error(msg)
|
|
vim.cmd.colorscheme("habamax")
|
|
end,
|
|
})
|
|
LazyVim.track()
|
|
end
|
|
|
|
---@param buf? number
|
|
---@return string[]?
|
|
function M.get_kind_filter(buf)
|
|
buf = (buf == nil or buf == 0) and vim.api.nvim_get_current_buf() or buf
|
|
local ft = vim.bo[buf].filetype
|
|
if M.kind_filter == false then
|
|
return
|
|
end
|
|
if M.kind_filter[ft] == false then
|
|
return
|
|
end
|
|
if type(M.kind_filter[ft]) == "table" then
|
|
return M.kind_filter[ft]
|
|
end
|
|
---@diagnostic disable-next-line: return-type-mismatch
|
|
return type(M.kind_filter) == "table" and type(M.kind_filter.default) == "table" and M.kind_filter.default or nil
|
|
end
|
|
|
|
---@param name "autocmds" | "options" | "keymaps"
|
|
function M.load(name)
|
|
local function _load(mod)
|
|
if require("lazy.core.cache").find(mod)[1] then
|
|
LazyVim.try(function()
|
|
require(mod)
|
|
end, { msg = "Failed loading " .. mod })
|
|
end
|
|
end
|
|
local pattern = "LazyVim" .. name:sub(1, 1):upper() .. name:sub(2)
|
|
-- always load lazyvim, then user file
|
|
if M.defaults[name] or name == "options" then
|
|
_load("lazyvim.config." .. name)
|
|
vim.api.nvim_exec_autocmds("User", { pattern = pattern .. "Defaults", modeline = false })
|
|
end
|
|
_load("config." .. name)
|
|
if vim.bo.filetype == "lazy" then
|
|
-- HACK: LazyVim may have overwritten options of the Lazy ui, so reset this here
|
|
vim.cmd([[do VimResized]])
|
|
end
|
|
vim.api.nvim_exec_autocmds("User", { pattern = pattern, modeline = false })
|
|
end
|
|
|
|
M.did_init = false
|
|
function M.init()
|
|
if M.did_init then
|
|
return
|
|
end
|
|
M.did_init = true
|
|
local plugin = require("lazy.core.config").spec.plugins.LazyVim
|
|
if plugin then
|
|
vim.opt.rtp:append(plugin.dir)
|
|
end
|
|
|
|
package.preload["lazyvim.plugins.lsp.format"] = function()
|
|
LazyVim.deprecate([[require("lazyvim.plugins.lsp.format")]], [[LazyVim.format]])
|
|
return LazyVim.format
|
|
end
|
|
|
|
-- delay notifications till vim.notify was replaced or after 500ms
|
|
LazyVim.lazy_notify()
|
|
|
|
-- load options here, before lazy init while sourcing plugin modules
|
|
-- this is needed to make sure options will be correctly applied
|
|
-- after installing missing plugins
|
|
M.load("options")
|
|
-- defer built-in clipboard handling: "xsel" and "pbcopy" can be slow
|
|
lazy_clipboard = vim.opt.clipboard
|
|
vim.opt.clipboard = ""
|
|
|
|
if vim.g.deprecation_warnings == false then
|
|
vim.deprecate = function() end
|
|
end
|
|
|
|
LazyVim.plugin.setup()
|
|
M.json.load()
|
|
end
|
|
|
|
setmetatable(M, {
|
|
__index = function(_, key)
|
|
if options == nil then
|
|
return vim.deepcopy(defaults)[key]
|
|
end
|
|
---@cast options LazyVimConfig
|
|
return options[key]
|
|
end,
|
|
})
|
|
|
|
return M
|