Skip to content

Commit 0659280

Browse files
authored
Merge pull request #2 from nvim-lua/master
Sincronização com o repositório principal
2 parents c494e80 + 5bdde24 commit 0659280

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ assignees: ''
1111

1212
## Before Reporting an Issue
1313
- I have read the kickstart.nvim README.md.
14-
- I have read the appropiate plugin's documentation.
14+
- I have read the appropriate plugin's documentation.
1515
- I have searched that this issue has not been reported before.
1616

1717
- [ ] **By checking this, I confirm that the above steps are completed. I understand leaving this unchecked will result in this report being closed immediately.**

init.lua

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -452,22 +452,22 @@ require('lazy').setup({
452452
opts = {
453453
library = {
454454
-- Load luvit types when the `vim.uv` word is found
455-
{ path = 'luvit-meta/library', words = { 'vim%.uv' } },
455+
{ path = '${3rd}/luv/library', words = { 'vim%.uv' } },
456456
},
457457
},
458458
},
459-
{ 'Bilal2453/luvit-meta', lazy = true },
460459
{
461460
-- Main LSP Configuration
462461
'neovim/nvim-lspconfig',
463462
dependencies = {
464463
-- Automatically install LSPs and related tools to stdpath for Neovim
465-
{ 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants
464+
-- Mason must be loaded before its dependents so we need to set it up here.
465+
-- NOTE: `opts = {}` is the same as calling `require('mason').setup({})`
466+
{ 'williamboman/mason.nvim', opts = {} },
466467
'williamboman/mason-lspconfig.nvim',
467468
'WhoIsSethDaniel/mason-tool-installer.nvim',
468469

469470
-- Useful status updates for LSP.
470-
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
471471
{ 'j-hui/fidget.nvim', opts = {} },
472472

473473
-- Allows extra capabilities provided by nvim-cmp
@@ -651,13 +651,16 @@ require('lazy').setup({
651651
}
652652

653653
-- Ensure the servers and tools above are installed
654-
-- To check the current status of installed tools and/or manually install
655-
-- other tools, you can run
654+
--
655+
-- To check the current status of installed tools and/or manually install
656+
-- other tools, you can run
656657
-- :Mason
657658
--
658-
-- You can press `g?` for help in this menu.
659-
require('mason').setup()
660-
659+
-- You can press `g?` for help in this menu.
660+
--
661+
-- `mason` had to be setup earlier: to configure its options see the
662+
-- `dependencies` table for `nvim-lspconfig` above.
663+
--
661664
-- You can add other tools here that you want Mason to install
662665
-- for you, so that they are available from within Neovim.
663666
local ensure_installed = vim.tbl_keys(servers or {})

0 commit comments

Comments
 (0)