This commit is contained in:
asep komarudin 2023-12-30 09:46:28 +07:00
parent 4c30893658
commit caf3833ea2
2 changed files with 14 additions and 14 deletions

View file

@ -43,7 +43,7 @@
"nvim-ts-autotag": { "branch": "main", "commit": "8515e48a277a2f4947d91004d9aa92c29fdc5e18" }, "nvim-ts-autotag": { "branch": "main", "commit": "8515e48a277a2f4947d91004d9aa92c29fdc5e18" },
"nvim-ts-context-commentstring": { "branch": "main", "commit": "1277b4a1f451b0f18c0790e1a7f12e1e5fdebfee" }, "nvim-ts-context-commentstring": { "branch": "main", "commit": "1277b4a1f451b0f18c0790e1a7f12e1e5fdebfee" },
"nvim-ts-rainbow2": { "branch": "master", "commit": "b3120cd5ae9ca524af9cb602f41e12e301fa985f" }, "nvim-ts-rainbow2": { "branch": "master", "commit": "b3120cd5ae9ca524af9cb602f41e12e301fa985f" },
"nvim-web-devicons": { "branch": "master", "commit": "43aa2ddf476012a2155f5f969ee55ab17174da7a" }, "nvim-web-devicons": { "branch": "master", "commit": "808627b8d412b2a6b6fc6eed816fec3557198b01" },
"plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" }, "plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" },
"smart-splits.nvim": { "branch": "master", "commit": "c8a9173d70cbbd1f6e4a414e49e31df2b32a1362" }, "smart-splits.nvim": { "branch": "master", "commit": "c8a9173d70cbbd1f6e4a414e49e31df2b32a1362" },
"telescope.nvim": { "branch": "master", "commit": "3466159b0fcc1876483f6f53587562628664d850" }, "telescope.nvim": { "branch": "master", "commit": "3466159b0fcc1876483f6f53587562628664d850" },

View file

@ -66,18 +66,18 @@ return {
history = true, history = true,
delete_check_events = "TextChanged", delete_check_events = "TextChanged",
}, },
-- stylua: ignore -- stylua: ignore
keys = { keys = {
-- { -- {
-- "<tab>", -- "<tab>",
-- function() -- function()
-- return require("luasnip").jumpable(1) and "<Plug>luasnip-jump-next" or "<tab>" -- return require("luasnip").jumpable(1) and "<Plug>luasnip-jump-next" or "<tab>"
-- end, -- end,
-- expr = true, silent = true, mode = "i", -- expr = true, silent = true, mode = "i",
-- }, -- },
{ "<tab>", function() require("luasnip").jump(1) end, mode = "s" }, { "<tab>", function() require("luasnip").jump(1) end, mode = "s" },
{ "<s-tab>", function() require("luasnip").jump(-1) end, mode = { "i", "s" } }, { "<s-tab>", function() require("luasnip").jump(-1) end, mode = { "i", "s" } },
}, },
}, },
{ {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
@ -244,7 +244,7 @@ return {
-- build = "npm install -g live-server", -- build = "npm install -g live-server",
-- }, -- },
-- for multi cursor select -- for multi cursor select
{ "mg979/vim-visual-multi", event = "InsertEnter" }, { "mg979/vim-visual-multi", event = "BufWinEnter" },
-- for auto close tag -- for auto close tag
{ {
"windwp/nvim-ts-autotag", "windwp/nvim-ts-autotag",