Merge branch 'master' into patch-1

This commit is contained in:
Gilad Sher 2024-09-07 11:53:39 -04:00 committed by GitHub
commit 5f4d8471bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 340 additions and 11 deletions

View file

@ -0,0 +1,6 @@
return {
'windwp/nvim-ts-autotag',
config = function()
require('nvim-ts-autotag').setup()
end
}

View file

@ -0,0 +1,6 @@
return {
"windwp/nvim-autopairs",
config = function()
require("nvim-autopairs").setup {}
end,
}

View file

@ -0,0 +1,6 @@
return {
'norcalli/nvim-colorizer.lua',
config = function ()
require('colorizer').setup()
end
}

View file

@ -0,0 +1,3 @@
return {
'github/copilot.vim'
}

View file

@ -0,0 +1,15 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function()
require('neo-tree').setup {}
end,
}

View file

@ -0,0 +1,14 @@
return {
'ray-x/go.nvim',
dependencies = { -- optional packages
'ray-x/guihua.lua',
'neovim/nvim-lspconfig',
'nvim-treesitter/nvim-treesitter',
},
config = function()
require('go').setup()
end,
event = { 'CmdlineEnter' },
ft = { 'go', 'gomod' },
build = ':lua require("go.install").update_all_sync()', -- if you need to install/update all binaries
}

View file

@ -0,0 +1,3 @@
return {
"ThePrimeagen/harpoon"
}

View file

@ -0,0 +1,7 @@
return {
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons', 'catppuccin/nvim' },
config = function()
require('lualine').setup { options = { theme = 'catppuccin' } }
end,
}

View file

@ -0,0 +1,23 @@
return {
'smoka7/multicursors.nvim',
event = 'VeryLazy',
dependencies = {
'smoka7/hydra.nvim',
},
opts = {},
cmd = { 'MCstart', 'MCvisual', 'MCclear', 'MCpattern', 'MCvisualPattern', 'MCunderCursor' },
keys = {
{
mode = { 'v', 'n' },
'<Leader>ms',
'<cmd>MCstart<cr>',
desc = 'Create a [M]ulti [S]election for selected text or word under the cursor',
},
{
mode = { 'v', 'n' },
'<Leader>mp',
'<cmd>MCpattern<cr>',
desc = 'Create a [M]ulti [P]attern selection in the current buffer',
},
},
}

View file

@ -0,0 +1,3 @@
return {
'prettier/vim-prettier'
}

View file

@ -64,6 +64,7 @@ return {
ensure_installed = {
-- Update this to ensure that you have the debuggers for the langs you want
'delve',
'chrome-debug-adapter',
},
}