neovim: remove v prefixes from versions

This commit is contained in:
sloane 2026-01-14 14:17:11 -05:00
parent 060cb7d30a
commit 4e2509ac2a
No known key found for this signature in database

View file

@ -40,10 +40,10 @@ k("n", "<C-l>", "<C-w>l")
-- Plugins -- Plugins
require("lazy").setup({ require("lazy").setup({
{ "catppuccin/nvim", version = "^v1.11.0", name = "catppuccin", priority = 1000 }, { "catppuccin/nvim", version = "^1.11.0", name = "catppuccin", priority = 1000 },
{ "tpope/vim-abolish", version = "^v1.2" }, { "tpope/vim-abolish", version = "^1.2" },
{ "tpope/vim-commentary", version = "^v1.3" }, { "tpope/vim-commentary", version = "^1.3" },
{ "tpope/vim-repeat", version = "^v1.2" }, { "tpope/vim-repeat", version = "^1.2" },
{ {
"windwp/nvim-autopairs", "windwp/nvim-autopairs",
@ -51,6 +51,7 @@ require("lazy").setup({
event = "InsertEnter", event = "InsertEnter",
config = true, config = true,
}, },
{ {
"kylechui/nvim-surround", "kylechui/nvim-surround",
version = "^3.0.0", version = "^3.0.0",
@ -60,7 +61,7 @@ require("lazy").setup({
{ {
"nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim",
version = "^v0.2.1", version = "^0.2.1",
dependencies = { "nvim-lua/plenary.nvim" }, dependencies = { "nvim-lua/plenary.nvim" },
keys = { keys = {
{ "<leader><space>", "<cmd>Telescope find_files<cr>" }, { "<leader><space>", "<cmd>Telescope find_files<cr>" },
@ -81,10 +82,10 @@ require("lazy").setup({
{ {
"mason-org/mason-lspconfig.nvim", "mason-org/mason-lspconfig.nvim",
version = "^v2.1.0", version = "^2.1.0",
dependencies = { dependencies = {
{ "mason-org/mason.nvim", version = "^v2.2.1", opts = {} }, { "mason-org/mason.nvim", version = "^2.2.1", opts = {} },
{ "neovim/nvim-lspconfig", version = "^v2.5.0"} { "neovim/nvim-lspconfig", version = "^2.5.0"}
}, },
opts = {}, opts = {},
}, },
@ -98,7 +99,7 @@ require("lazy").setup({
"hrsh7th/cmp-path", "hrsh7th/cmp-path",
{ {
"L3MON4D3/LuaSnip", "L3MON4D3/LuaSnip",
version = "^v2.4.1", version = "^2.4.1",
build = "make install_jsregexp", build = "make install_jsregexp",
}, },
}, },