Install harpoon

This commit is contained in:
Marcelo Jacobus 2025-06-29 20:30:19 -03:00
parent 5151aeecbc
commit 295227b8f8
4 changed files with 21 additions and 7 deletions

View file

@ -0,0 +1,7 @@
-- lua/plugins/colorschemes.lua
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {}
}

View file

@ -0,0 +1,5 @@
return {
{ "nvim-lua/plenary.nvim" },
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
{ "nvim-telescope/telescope.nvim", tag = "0.1.5" },
}

View file

@ -8,10 +8,12 @@ if not vim.loop.fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
{ "nvim-lua/plenary.nvim" },
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
{ "nvim-telescope/telescope.nvim", tag = "0.1.5" },
{ "catppuccin/nvim", name = "catppuccin" },
{ "folke/tokyonight.nvim", lazy = false, priority = 1000, opts = {}, }
})
-- require("lazy").setup({
-- { "nvim-lua/plenary.nvim" },
-- { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
-- { "nvim-telescope/telescope.nvim", tag = "0.1.5" },
-- { "catppuccin/nvim", name = "catppuccin" },
-- { "folke/tokyonight.nvim", lazy = false, priority = 1000, opts = {}, }
-- })
require('lazy').setup('plugins') -- lua/plugins/*