Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
feat: remove commit field from package declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldub committed Oct 29, 2023
1 parent 10b66e3 commit 06f1fcb
Show file tree
Hide file tree
Showing 46 changed files with 0 additions and 64 deletions.
1 change: 0 additions & 1 deletion doc/doom_nvim_modules.norg
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ version: 0.0.11
example.packages = {
["example-plugin.nvim"] = { -- Use the repository name as the key
"GithubUser/example-plugin.nvim",
commit = "..." -- We like to pin plugins to commits to avoid issues upgrading.
}
}

Expand Down
1 change: 0 additions & 1 deletion docs/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ example.settings = {...} -- Doom-nvim provided object to change settings
example.packages = {
["example-plugin.nvim"] = { -- Use the repository name as the key
"GithubUser/example-plugin.nvim",
commit = "..." -- We like to pin plugins to commits to avoid issues upgrading.
}
}

Expand Down
2 changes: 0 additions & 2 deletions lua/doom/modules/core/doom/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ required.packages = {
},
["plenary.nvim"] = {
"nvim-lua/plenary.nvim",
commit = "1c7e3e6b0f4dd5a174fcea9fda8a4d7de593b826",
},
["nvim-web-devicons"] = {
"kyazdani42/nvim-web-devicons",
commit = "a8cf88cbdb5c58e2b658e179c4b2aa997479b3da",
},
}

Expand Down
6 changes: 0 additions & 6 deletions lua/doom/modules/core/treesitter/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,11 @@ treesitter.settings = {
treesitter.packages = {
["nvim-treesitter"] = {
"nvim-treesitter/nvim-treesitter",
commit = {
["nvim-0.7"] = "d76b0de6536c2461f97cfeca0550f8cb89793935",
["latest"] = "51d220e0bd8922caabcb3e5de936fc599a1bd210",
},
build = ":TSUpdate",
branch = "master",
},
["nvim-ts-context-commentstring"] = {
"JoosepAlviste/nvim-ts-context-commentstring",
commit = "4a42b30376c1bd625ab5016c2079631d531d797a",
-- after = "nvim-treesitter",
dependencies = {
"nvim-treesitter/nvim-treesitter"
Expand All @@ -64,7 +59,6 @@ treesitter.packages = {
},
["nvim-ts-autotag"] = {
"windwp/nvim-ts-autotag",
commit = "fdefe46c6807441460f11f11a167a2baf8e4534b",
-- after = "nvim-treesitter",
dependencies = {
"nvim-treesitter/nvim-treesitter"
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/core/updater/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ local updater = {}
updater.packages = {
["plenary.nvim"] = {
"nvim-lua/plenary.nvim",
commit = "1c7e3e6b0f4dd5a174fcea9fda8a4d7de593b826",
},
}

Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/annotations/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ annotations.settings = {
annotations.packages = {
["neogen"] = {
"danymat/neogen",
commit = "0958aeffcddf46e57785c3026be934816b4f39d2",
keys = { "<leader>cg" },
cmd = "Neogen",
dependencies={
Expand Down
2 changes: 0 additions & 2 deletions lua/doom/modules/features/auto_install/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@ auto_install.settings = {
auto_install.packages = {
["mason.nvim"] = {
"williamboman/mason.nvim",
commit = "5ab101aa11849c2424d5b87726105daae8cb49e8",
},
["mason-lspconfig"] = {
"williamboman/mason-lspconfig",
commit = "43c7f402cb9822b61b5dc05bf0b385928df256a6",
},
}

Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/auto_session/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ auto_session.settings = {
auto_session.packages = {
["persistence.nvim"] = {
"folke/persistence.nvim",
commit = "8484fdaa284207f77ec69b9627316bf334ad653f",
},
}

Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/autopairs/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ autopairs.settings = {
autopairs.packages = {
["nvim-autopairs"] = {
"windwp/nvim-autopairs",
commit = "f00eb3b766c370cb34fdabc29c760338ba9e4c6c",
event = "InsertEnter",
},
}
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/colorizer/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ colorizer.settings = {
colorizer.packages = {
["nvim-colorizer.lua"] = {
"norcalli/nvim-colorizer.lua",
commit = "36c610a9717cc9ec426a07c8e6bf3b3abcb139d6",
event = "VeryLazy",
},
}
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/comment/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ comment.settings = {
comment.packages = {
["Comment.nvim"] = {
"numToStr/Comment.nvim",
commit = "e89df176e8b38e931b7e71a470f923a317976d86",
},
}

Expand Down
2 changes: 0 additions & 2 deletions lua/doom/modules/features/dap/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,9 @@ dap.settings = {
dap.packages = {
["nvim-dap"] = {
"mfussenegger/nvim-dap",
commit = "b8201fd104287e9c24f898f1f7f5202896eea203",
},
["nvim-dap-ui"] = {
"rcarriga/nvim-dap-ui",
commit = "b80227ea56a48177786904f6322abc8b2dc0bc36",
dependencies = {
"mfussenegger/nvim-dap",
}
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/dashboard/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ dashboard.settings = {
dashboard.packages = {
["dashboard-nvim"] = {
"glepnir/dashboard-nvim",
commit = "f7d623457d6621b25a1292b24e366fae40cb79ab",
cmd = "Dashboard",
lazy = true,
},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/doom_themes/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ doom_themes.configs = {}
doom_themes.packages = {
["doom-themes.nvim"] = {
"GustavoPrietoP/doom-themes.nvim",
commit = "03d417d3eab71c320744f8da22251715ba6cee53",
event = "ColorScheme",
lazy = true,
},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/editorconfig/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ editorconfig.settings = {}
editorconfig.packages = {
["editorconfig-vim"] = {
"editorconfig/editorconfig-vim",
commit = "30ddc057f71287c3ac2beca876e7ae6d5abe26a0",
},
}

Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/explorer/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ explorer.settings = {
explorer.packages = {
["nvim-tree.lua"] = {
"nvim-tree/nvim-tree.lua",
commit = "3ce0a8e770f70a135ef969e0a640bd8d05baf42c",
cmd = {
"NvimTreeClipboard",
"NvimTreeClose",
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/firenvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ firenvim.settings = {
firenvim.packages = {
["firenvim"] = {
"glacambre/firenvim",
commit = "b6be2e074b8f62815a45e31eb0966b4dd5e57810",
build = function()
vim.fn["firenvim#install"](0)
end,
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/gitsigns/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ gitsigns.settings = {
gitsigns.packages = {
["gitsigns.nvim"] = {
"lewis6991/gitsigns.nvim",
commit = "addd6e174a85fc1c4007ab0b65d77e6555b417bf",
event = "VeryLazy",
},
}
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/illuminate/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ illuminate.settings = {
illuminate.packages = {
["mini.cursorword"] = {
"echasnovski/mini.cursorword",
commit = "21af5679b39cf1a6bc6bf4eeaabc35e1b5ee7110",
event = "VeryLazy",
},
}
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/indentlines/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ indentlines.settings = {
indentlines.packages = {
["indent-blankline.nvim"] = {
"lukas-reineke/indent-blankline.nvim",
commit = "c4c203c3e8a595bc333abaf168fcb10c13ed5fb7",
},
}

Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/lazygit/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ lazygit.settings = {}
lazygit.packages = {
["lazygit.nvim"] = {
"kdheepak/lazygit.nvim",
commit = "32bffdebe273e571588f25c8a708ca7297928617",
cmd = { "LazyGit", "LazyGitConfig" },
lazy = true,
},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/linter/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ linter.requires_modules = { "features.lsp" }
linter.packages = {
["null-ls.nvim"] = {
"jose-elias-alvarez/null-ls.nvim",
commit = "915558963709ea17c5aa246ca1c9786bfee6ddb4",
dependencies={"neovim/nvim-lspconfig"},
lazy = true,
},
Expand Down
7 changes: 0 additions & 7 deletions lua/doom/modules/features/lsp/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,20 +100,16 @@ lsp.settings = {
lsp.packages = {
["nvim-lspconfig"] = {
"neovim/nvim-lspconfig",
commit = "ed88435764d8b00442e66d39ec3d9c360e560783",
},
["nvim-cmp"] = {
"hrsh7th/nvim-cmp",
commit = "11a95792a5be0f5a40bab5fc5b670e5b1399a939",
event = "InsertEnter",
dependencies = {
"L3MON4D3/LuaSnip",
commit = "53e812a6f51c9d567c98215733100f0169bcc20a",
},
},
["cmp-nvim-lua"] = {
"hrsh7th/cmp-nvim-lua",
commit = "f3491638d123cfd2c8048aefaf66d246ff250ca6",
-- after = "nvim-cmp",
dependencies = {
"hrsh7th/nvim-cmp",
Expand All @@ -135,23 +131,20 @@ lsp.packages = {
},
["cmp-buffer"] = {
"hrsh7th/cmp-buffer",
commit = "3022dbc9166796b644a841a02de8dd1cc1d311fa",
-- after = "nvim-cmp",
dependencies = {
"hrsh7th/nvim-cmp",
}
},
["cmp_luasnip"] = {
"saadparwaiz1/cmp_luasnip",
commit = "18095520391186d634a0045dacaa346291096566",
-- after = "nvim-cmp",
dependencies = {
"hrsh7th/nvim-cmp",
}
},
["lsp_signature.nvim"] = {
"ray-x/lsp_signature.nvim",
commit = "1979f1118e2b38084e7c148f279eed6e9300a342",
-- after = "nvim-lspconfig",
dependencies = {
"neovim/nvim-lspconfig",
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/lsp_progress/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ fidget.settings = {}
fidget.packages = {
["fidget.nvim"] = {
"j-hui/fidget.nvim",
commit = "44585a0c0085765195e6961c15529ba6c5a2a13b",
dependencies = {"neovim/nvim-lspconfig"},
-- after = "nvim-lspconfig",
event = "VeryLazy",
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/minimap/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ minimap.settings = {}
minimap.packages = {
["minimap.vim"] = {
"wfxr/minimap.vim",
commit = "2b0151d7302f87f90c4664d119518dda73cc4633",
lazy = true,
cmd = {
"Minimap",
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/neogit/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ neogit.settings = {}
neogit.packages = {
["neogit"] = {
"NeogitOrg/neogit",
commit = "28b0227405e135424a79824ff6b840897cb4aba5",
cmd = "Neogit",
lazy = true,
},
Expand Down
4 changes: 0 additions & 4 deletions lua/doom/modules/features/neorg/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ neorg.settings = {
neorg.packages = {
["neorg"] = {
"nvim-neorg/neorg",
commit = {
["nvim-0.7"] = "d93126cfcc2b5f90c063676f8669fed9b0806bcd",
["latest"] = "aa613122f82ca7485b7055937a742b709ed3c576",
},
cmd = "Neorg",
dependencies = {"nvim-treesitter/nvim-treesitter"},
-- after = "nvim-treesitter",
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/projects/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ projects.settings = {
projects.packages = {
["project.nvim"] = {
"ahmedkhalf/project.nvim",
commit = "685bc8e3890d2feb07ccf919522c97f7d33b94e4",
cmd = "Telescope projects",
dependencies = { "nvim-treesitter/nvim-treesitter" },
},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/range_highlight/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ range_highlight.settings = {}
range_highlight.packages = {
["range-highlight.nvim"] = {
"winston0410/range-highlight.nvim",
commit = "8b5e8ccb3460b2c3675f4639b9f54e64eaab36d9",
dependencies = {
{ "winston0410/cmd-parser.nvim" },
},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/ranger/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ ranger.settings = {}
ranger.packages = {
["ranger.vim"] = {
"francoiscabrol/ranger.vim",
commit = "91e82debdf566dfaf47df3aef0a5fd823cedf41c",
dependencies = {
"rbgrouleff/bclose.vim"
},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/repl/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ repl.settings = {
repl.packages = {
["iron.nvim"] = {
"hkupty/iron.nvim",
commit = "f4131638454aeb96cbd92652dd8c396e48eb4118",
cmd = "IronRepl",
},
}
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/restclient/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ restclient.settings = {}
restclient.packages = {
["rest.nvim"] = {
"rest-nvim/rest.nvim",
commit = "090e253c114b6d5448bac5869a28a6623c195e3a",
cmd = {
"RestNvim",
"RestNvimPreview",
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/show_registers/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ show_registers.settings = {}
show_registers.packages = {
["registers.nvim"] = {
"tversteeg/registers.nvim",
commit = "667ae447d2c7efb64461a2c58f5311d1248cdb5f",
opt = true,
},
}
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/statusline/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ end
statusline.packages = {
["heirline.nvim"] = {
"rebelot/heirline.nvim",
commit = "19cab76f52710ec67bd8829cbc96d0c322963090",
},
}

Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/suda/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ suda.settings = {}
suda.packages = {
["suda.vim"] = {
"lambdalisue/suda.vim",
commit = "08abd39dfe1cee681b8ce3e7321da5fa03e045c1",
lazy = true,
cmd = { "SudaRead", "SudaWrite" },
},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/superman/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ superman.settings = {}
superman.packages = {
["vim-superman"] = {
"jez/vim-superman",
commit = "19d307446576d9118625c5d9d3c7a4c9bec5571a",
cmd = "SuperMan",
lazy = true,
},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/symbols/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ symbols.settings = {
symbols.packages = {
["symbols-outline.nvim"] = {
"simrat39/symbols-outline.nvim",
commit = "6a3ed24c5631da7a5d418bced57c16b32af7747c",
cmd = {
"SymbolsOutline",
"SymbolsOutlineOpen",
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/tabline/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ tabline.packages = {
["bufferline.nvim"] = {
"akinsho/bufferline.nvim",
branch = "main",
commit = "2d5266d14b7b5dbc54923469b4599f0349f7cedc",
event = "BufAdd",
},
}
Expand Down
2 changes: 0 additions & 2 deletions lua/doom/modules/features/telescope/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,11 @@ telescope.settings = {
telescope.packages = {
["telescope.nvim"] = {
"nvim-telescope/telescope.nvim",
commit = "1ba7278cf08da8048e7f589ef6b65a39fd3e4dbf",
cmd = "Telescope",
lazy = true,
},
["telescope-file-browser.nvim"] = {
"nvim-telescope/telescope-file-browser.nvim",
commit = "304508fb7bea78e3c0eeddd88c4837501e403ae8",
cmd = "Telescope browse_files",
keys = "<leader>.",
dependencies = {"nvim-telescope/telescope.nvim"},
Expand Down
1 change: 0 additions & 1 deletion lua/doom/modules/features/terminal/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ terminal.settings = {
terminal.packages = {
["toggleterm.nvim"] = {
"akinsho/toggleterm.nvim",
commit = "a54e6c471ce1cd8ef8357e34598a28a955297131",
cmd = { "ToggleTerm", "TermExec" },
keys = {terminal.settings.open_mapping},
lazy = true,
Expand Down
Loading

0 comments on commit 06f1fcb

Please sign in to comment.