mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-22 23:27:34 +00:00
Make things more lazy
This commit is contained in:
parent
2603cb270f
commit
a823fa78f9
@ -5,7 +5,7 @@
|
|||||||
},
|
},
|
||||||
"LuaSnip": {
|
"LuaSnip": {
|
||||||
"branch": "master",
|
"branch": "master",
|
||||||
"commit": "500981ff6cefc7343e3959ef0f939bd0bfd49ba9"
|
"commit": "03c8e67eb7293c404845b3982db895d59c0d1538"
|
||||||
},
|
},
|
||||||
"cmp-buffer": {
|
"cmp-buffer": {
|
||||||
"branch": "main",
|
"branch": "main",
|
||||||
@ -117,7 +117,7 @@
|
|||||||
},
|
},
|
||||||
"nvim-lspconfig": {
|
"nvim-lspconfig": {
|
||||||
"branch": "master",
|
"branch": "master",
|
||||||
"commit": "df9c116cbcf0aa7e58f2b36b0296fa687e87f36f"
|
"commit": "0b8165cf95806bc4bb8f745bb0c92021b2ed4b98"
|
||||||
},
|
},
|
||||||
"nvim-navic": {
|
"nvim-navic": {
|
||||||
"branch": "master",
|
"branch": "master",
|
||||||
|
@ -170,6 +170,7 @@ return {
|
|||||||
dependencies = { { "https://github.com/neovim/nvim-lspconfig" } },
|
dependencies = { { "https://github.com/neovim/nvim-lspconfig" } },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
event = "VeryLazy",
|
||||||
},
|
},
|
||||||
|
|
||||||
-- On Mac, update colors when dark mode changes
|
-- On Mac, update colors when dark mode changes
|
||||||
@ -366,6 +367,14 @@ return {
|
|||||||
"https://github.com/L3MON4D3/LuaSnip",
|
"https://github.com/L3MON4D3/LuaSnip",
|
||||||
version = "1.x.x",
|
version = "1.x.x",
|
||||||
event = "InsertEnter *",
|
event = "InsertEnter *",
|
||||||
|
config = function()
|
||||||
|
require("luasnip.loaders.from_vscode").lazy_load()
|
||||||
|
end,
|
||||||
|
dependencies = {
|
||||||
|
{
|
||||||
|
"https://github.com/rafamadriz/friendly-snippets",
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"https://github.com/hrsh7th/cmp-nvim-lsp",
|
"https://github.com/hrsh7th/cmp-nvim-lsp",
|
||||||
@ -412,19 +421,13 @@ return {
|
|||||||
},
|
},
|
||||||
|
|
||||||
-- Add snippets
|
-- Add snippets
|
||||||
{
|
|
||||||
"https://github.com/rafamadriz/friendly-snippets",
|
|
||||||
dependencies = { { "https://github.com/L3MON4D3/LuaSnip" } },
|
|
||||||
config = function()
|
|
||||||
require("luasnip.loaders.from_vscode").lazy_load()
|
|
||||||
end,
|
|
||||||
event = "InsertEnter *",
|
|
||||||
},
|
|
||||||
event = "InsertEnter *",
|
event = "InsertEnter *",
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"https://github.com/ray-x/lsp_signature.nvim",
|
"https://github.com/ray-x/lsp_signature.nvim",
|
||||||
|
lazy = true,
|
||||||
|
event = "VeryLazy",
|
||||||
opts = {
|
opts = {
|
||||||
extra_trigger_chars = { "(", "," },
|
extra_trigger_chars = { "(", "," },
|
||||||
auto_close_after = nil,
|
auto_close_after = nil,
|
||||||
|
Loading…
Reference in New Issue
Block a user