summaryrefslogtreecommitdiff
path: root/lua/config/lazy.lua
AgeCommit message (Collapse)Author
2024-06-02fix: removed unnecessary env var (#67)DrummyFloyd
according to https://github.com/LazyVim/LazyVim/issues/2063#issuecomment-2143841592 this is not needed
2024-03-29fix: Deperecated syntax in bootstrapping of LazyVim starter (#56)denartha10
In the current state of the lazy.nvim repository, certain updates have been made. However, there remains an outdated reference to 'vim.loop' for the bootstrapping process of 'lazyvim' in this start repo for LazyVim, despite 'vim.loop' being deprecated. To rectify this, I suggest a minor alteration by replacing it with the following code snippet: ```lua if not (vim.uv or vim.loop).fs_stat(lazypath) then -- bootstrap do ```
2023-01-23fix(lazy): rearrange imports order so that user can overwrite extra modules (#9)jliaoh
2023-01-23feat: added extra for mini.animateFolke Lemaitre
2023-01-22fix(lazy): dont disable matchit, matchparen and netrw by defaultFolke Lemaitre
2023-01-22docs: updated readme to point to the installation section of the docsFolke Lemaitre
2023-01-17feat: set `config.defaults.version` for now. Too many semver plugins have ↵Folke Lemaitre
outdated releases
2023-01-16feat(lazy): set `config.defaults.lazy = false`. Better for new usersFolke Lemaitre
2023-01-09refactor: better examplesFolke Lemaitre
2023-01-07docs: added comments to config filesFolke Lemaitre
2023-01-07feat: initial commitFolke Lemaitre