mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-12-22 05:48:01 +00:00
[neovim] Bump several plugins to major its versions
This commit is contained in:
parent
d30dee3e24
commit
3a65d5bdce
@ -132,7 +132,7 @@ require("lazy").setup({
|
||||
{ "nvim-treesitter/nvim-treesitter", event = "BufReadPost" },
|
||||
{
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
version = "v2.x",
|
||||
version = "v3.x",
|
||||
dependencies = { "MunifTanjim/nui.nvim" },
|
||||
},
|
||||
{ "taybart/b64.nvim", event = "VeryLazy" },
|
||||
@ -168,7 +168,7 @@ require("lazy").setup({
|
||||
},
|
||||
|
||||
-- Snippets
|
||||
{ "L3MON4D3/LuaSnip", version = "v1.*" },
|
||||
{ "L3MON4D3/LuaSnip", version = "v2.*", event = "InsertEnter" },
|
||||
{ "rafamadriz/friendly-snippets" },
|
||||
|
||||
-- LSP
|
||||
@ -194,7 +194,7 @@ require("lazy").setup({
|
||||
|
||||
-- DAP
|
||||
{ "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" },
|
||||
{ "theHamsta/nvim-dap-virtual-text", event = "VeryLazy" },
|
||||
|
||||
|
@ -9,31 +9,42 @@ local check_backspace = function()
|
||||
end
|
||||
|
||||
local kind_icons = {
|
||||
Text = "",
|
||||
Method = "",
|
||||
Function = "",
|
||||
Constructor = "",
|
||||
Field = "",
|
||||
Variable = "",
|
||||
Class = "",
|
||||
Interface = "",
|
||||
Module = "",
|
||||
Property = "",
|
||||
Unit = "",
|
||||
Value = "",
|
||||
Enum = "",
|
||||
Keyword = "",
|
||||
Snippet = "",
|
||||
Color = "",
|
||||
File = "",
|
||||
Reference = "",
|
||||
Folder = "",
|
||||
EnumMember = "",
|
||||
Constant = "",
|
||||
Struct = "",
|
||||
Event = "",
|
||||
Operator = "",
|
||||
TypeParameter = "",
|
||||
Array = " ",
|
||||
Boolean = " ",
|
||||
Class = " ",
|
||||
Codeium = " ",
|
||||
Color = " ",
|
||||
Constant = " ",
|
||||
Constructor = " ",
|
||||
Copilot = " ",
|
||||
Enum = " ",
|
||||
EnumMember = " ",
|
||||
Event = " ",
|
||||
Field = " ",
|
||||
File = " ",
|
||||
Folder = " ",
|
||||
Function = " ",
|
||||
Interface = " ",
|
||||
Key = " ",
|
||||
Keyword = " ",
|
||||
Method = " ",
|
||||
Module = " ",
|
||||
Namespace = " ",
|
||||
Null = " ",
|
||||
Number = " ",
|
||||
Object = " ",
|
||||
Operator = " ",
|
||||
Package = " ",
|
||||
Property = " ",
|
||||
Reference = " ",
|
||||
Snippet = " ",
|
||||
String = " ",
|
||||
Struct = " ",
|
||||
Text = " ",
|
||||
TypeParameter = " ",
|
||||
Unit = " ",
|
||||
Value = " ",
|
||||
Variable = " ",
|
||||
}
|
||||
|
||||
cmp.setup({
|
||||
|
@ -89,7 +89,7 @@ require("lualine").setup({
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
end,
|
||||
},
|
||||
lsp_progress,
|
||||
{
|
||||
@ -104,7 +104,7 @@ require("lualine").setup({
|
||||
spaces,
|
||||
"encoding",
|
||||
filetype,
|
||||
{ get_schema, separator = "" },
|
||||
{ get_schema, separator = "" },
|
||||
},
|
||||
lualine_y = { "progress" },
|
||||
lualine_z = { "location" },
|
||||
|
@ -47,7 +47,9 @@ require("neo-tree").setup({
|
||||
".git",
|
||||
},
|
||||
},
|
||||
follow_current_file = true,
|
||||
follow_current_file = {
|
||||
enabled = true,
|
||||
},
|
||||
hijack_netrw_behavior = "open_current",
|
||||
use_libuv_file_watcher = true,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user