add svelte plugin and polyglot
This commit is contained in:
parent
7cdb358917
commit
da551bc671
|
|
@ -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" }
|
||||
}
|
||||
|
|
@ -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' },
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue