From da551bc6712f1c5c0fcf98d8d57e30cf55673bc1 Mon Sep 17 00:00:00 2001 From: Flavio Oliveira <61277545+fl4viooliveira@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:02:39 +0000 Subject: [PATCH] add svelte plugin and polyglot --- lazy-lock.json | 4 +++- lua/custom/plugins/init.lua | 12 ++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/lazy-lock.json b/lazy-lock.json index 5fd85dc3..6176bffb 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -26,10 +26,12 @@ "telescope-fzf-native.nvim": { "branch": "main", "commit": "6c921ca12321edaa773e324ef64ea301a1d0da62" }, "telescope.nvim": { "branch": "0.1.x", "commit": "7011eaae0ac1afe036e30c95cf80200b8dc3f21a" }, "todo-comments.nvim": { "branch": "main", "commit": "4a6737a8d70fe1ac55c64dfa47fcb189ca431872" }, - "vim-fugitive": { "branch": "master", "commit": "cbe9dfa162c178946afa689dd3f42d4ea8bf89c1" }, + "vim-fugitive": { "branch": "master", "commit": "46eaf8918b347906789df296143117774e827616" }, "vim-go": { "branch": "master", "commit": "1401b576c6ac382529188d3d26cff866139f2f9a" }, + "vim-polyglot": { "branch": "master", "commit": "bc8a81d3592dab86334f27d1d43c080ebf680d42" }, "vim-rhubarb": { "branch": "master", "commit": "ee69335de176d9325267b0fd2597a22901d927b1" }, "vim-sleuth": { "branch": "master", "commit": "1cc4557420f215d02c4d2645a748a816c220e99b" }, + "vim-svelte": { "branch": "main", "commit": "0e93ec53c3667753237282926fec626785622c1c" }, "vim-wakatime": { "branch": "master", "commit": "cda81ada9a3bf8168e2381c33831e0dd7be9b828" }, "which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" } } \ No newline at end of file diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 1286beaa..bbf7e4ee 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -2,6 +2,8 @@ -- I promise not to create any merge conflicts in this directory :) -- -- See the kickstart.nvim README for more information +vim.g.polyglot_disabled = { 'sleuth' } -- Disable sleuth plugin from polyglot + return { -- nvim-autopairs configuration { @@ -22,7 +24,7 @@ return { -- vim-wakatime plugin { - "wakatime/vim-wakatime" + 'wakatime/vim-wakatime' }, -- todo-comments plugin @@ -34,9 +36,11 @@ return { require("todo-comments").setup() end, }, - { - "fatih/vim-go" - }, + { 'fatih/vim-go' }, + + { 'sheerun/vim-polyglot' }, + + { 'evanleck/vim-svelte' }, }