chore: upgrade neovim plugins

Upgrade neovim plugins as part of the neovim upgrade to v0.10.0
This commit is contained in:
Dan Anglin 2024-06-29 09:21:56 +01:00
parent c7e75819fb
commit 587131d09d
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638
2 changed files with 17 additions and 7 deletions

View file

@ -11,7 +11,6 @@ bufferline.setup{
color_icons = true,
show_buffer_icons = true,
show_buffer_close_icons = false,
show_buffer_default_icon = true,
show_close_icon = false,
show_tab_indicators = true,
separator_style = "slant",
@ -29,5 +28,9 @@ bufferline.setup{
numbers = function(opts)
return string.format("[%s]%s", opts.id, opts.raise(opts.ordinal))
end,
get_element_icon = function(element)
local icon, hl = require('nvim-web-devicons').get_icon_by_filetype(element.filetype, { default = false })
return icon, hl
end,
}
}

View file

@ -6,8 +6,9 @@ vim.opt.runtimepath:prepend(lazypath)
local plugins = {
{
-- Source: https://github.com/folke/tokyonight.nvim
"folke/tokyonight.nvim",
tag = "v2.1.0", -- 2023-08-29
tag = "v3.0.1", -- 2024-01-21
priority = 1000,
config = function()
require("plugins.config.tokyonight")
@ -17,15 +18,17 @@ local plugins = {
end,
},
{
-- Source: https://github.com/neovim/nvim-lspconfig
"neovim/nvim-lspconfig",
commit = "10fa01d553ce10646350461ac5ddc71f189e9d1a", -- 2023-04-10
tag = "v0.1.8", -- 2024-05-21
config = function()
require("plugins.config.lsp")
end,
},
{
-- Source: https://github.com/nvim-treesitter/nvim-treesitter
"nvim-treesitter/nvim-treesitter",
commit = "cc360a9beb1b30d172438f640e2c3450358c4086", -- 2023-04-10
commit = "f0e3b5c5fe38d0012c63368db90017fef87c85a2", -- 2024-06-29
config = function()
require("plugins.config.treesitter")
end,
@ -34,12 +37,14 @@ local plugins = {
end,
},
{
-- Source: https://github.com/nvim-tree/nvim-web-devicons
"nvim-tree/nvim-web-devicons",
commit = "f16ec8f6e5d23e4349501dae46e0a661918e086e", -- 2023-04-08
commit = "c0cfc1738361b5da1cd0a962dd6f774cc444f856", -- 2024-06-09
},
{
-- Source: https://github.com/akinsho/bufferline.nvim
"akinsho/bufferline.nvim",
tag = "v3.6.0", -- 2023.03.30
tag = "v4.6.1", -- 2024.05.21
dependencies = {
"nvim-tree/nvim-web-devicons",
},
@ -48,6 +53,7 @@ local plugins = {
end,
},
{
-- Source: https://github.com/is0n/tui-nvim
"is0n/tui-nvim",
commit = "2eeff3ac921f53bdb837d23d6e4501d97807994c", -- 2022.05.07
config = function()
@ -55,8 +61,9 @@ local plugins = {
end,
},
{
-- Source: https://github.com/mfussenegger/nvim-lint
"mfussenegger/nvim-lint",
commit = "67f74e630a84ecfa73a82783c487bdedd8cecdc3", -- 2023.09.21
commit = "efc6fc83f0772283e064c53a8f9fb5645bde0bc0", -- 2024.06.26
config = function()
require("plugins.config.lint")
end,