[neovim] Bump several plugins to major its versions

This commit is contained in:
Daniel Carrillo 2023-10-08 20:01:33 +02:00
parent d30dee3e24
commit 3a65d5bdce
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
4 changed files with 44 additions and 31 deletions

View File

@ -132,7 +132,7 @@ require("lazy").setup({
{ "nvim-treesitter/nvim-treesitter", event = "BufReadPost" }, { "nvim-treesitter/nvim-treesitter", event = "BufReadPost" },
{ {
"nvim-neo-tree/neo-tree.nvim", "nvim-neo-tree/neo-tree.nvim",
version = "v2.x", version = "v3.x",
dependencies = { "MunifTanjim/nui.nvim" }, dependencies = { "MunifTanjim/nui.nvim" },
}, },
{ "taybart/b64.nvim", event = "VeryLazy" }, { "taybart/b64.nvim", event = "VeryLazy" },
@ -168,7 +168,7 @@ require("lazy").setup({
}, },
-- Snippets -- Snippets
{ "L3MON4D3/LuaSnip", version = "v1.*" }, { "L3MON4D3/LuaSnip", version = "v2.*", event = "InsertEnter" },
{ "rafamadriz/friendly-snippets" }, { "rafamadriz/friendly-snippets" },
-- LSP -- LSP
@ -194,7 +194,7 @@ require("lazy").setup({
-- DAP -- DAP
{ "mfussenegger/nvim-dap", event = "VeryLazy", version = "0.*" }, { "mfussenegger/nvim-dap", event = "VeryLazy", version = "0.*" },
{ "rcarriga/nvim-dap-ui", event = "VeryLazy", version = "v2.*" }, { "rcarriga/nvim-dap-ui", event = "VeryLazy", version = "v3.*" },
{ "ravenxrz/DAPInstall.nvim", event = "VeryLazy" }, { "ravenxrz/DAPInstall.nvim", event = "VeryLazy" },
{ "theHamsta/nvim-dap-virtual-text", event = "VeryLazy" }, { "theHamsta/nvim-dap-virtual-text", event = "VeryLazy" },

View File

@ -9,31 +9,42 @@ local check_backspace = function()
end end
local kind_icons = { local kind_icons = {
Text = "", Array = "",
Method = "", Boolean = "",
Function = "", Class = "",
Constructor = "", Codeium = "",
Field = "", Color = "",
Variable = "", Constant = "",
Class = "", Constructor = "",
Interface = "", Copilot = "",
Module = "", Enum = "",
Property = "", EnumMember = "",
Unit = "", Event = "",
Value = "", Field = "",
Enum = "", File = "",
Keyword = "", Folder = "",
Snippet = "", Function = "",
Color = "", Interface = "",
File = "", Key = "",
Reference = "", Keyword = "",
Folder = "", Method = "",
EnumMember = "", Module = "",
Constant = "", Namespace = "",
Struct = "", Null = "",
Event = "", Number = "",
Operator = "", Object = "",
TypeParameter = "", Operator = "",
Package = "",
Property = "",
Reference = "",
Snippet = "",
String = "",
Struct = "",
Text = "",
TypeParameter = "",
Unit = "",
Value = "",
Variable = "",
} }
cmp.setup({ cmp.setup({

View File

@ -89,7 +89,7 @@ require("lualine").setup({
end end
return true return true
end end,
}, },
lsp_progress, lsp_progress,
{ {
@ -104,7 +104,7 @@ require("lualine").setup({
spaces, spaces,
"encoding", "encoding",
filetype, filetype,
{ get_schema, separator = "" }, { get_schema, separator = "" },
}, },
lualine_y = { "progress" }, lualine_y = { "progress" },
lualine_z = { "location" }, lualine_z = { "location" },

View File

@ -47,7 +47,9 @@ require("neo-tree").setup({
".git", ".git",
}, },
}, },
follow_current_file = true, follow_current_file = {
enabled = true,
},
hijack_netrw_behavior = "open_current", hijack_netrw_behavior = "open_current",
use_libuv_file_watcher = true, use_libuv_file_watcher = true,
}, },